add capella to circleci build
This commit is contained in:
parent
4f24fe455b
commit
155863d86d
|
@ -129,6 +129,20 @@ jobs:
|
||||||
command: make citest fork=merge
|
command: make citest fork=merge
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: tests/core/pyspec/test-reports
|
path: tests/core/pyspec/test-reports
|
||||||
|
test-capella:
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.8
|
||||||
|
working_directory: ~/specs-repo
|
||||||
|
steps:
|
||||||
|
- restore_cache:
|
||||||
|
key: v3-specs-repo-{{ .Branch }}-{{ .Revision }}
|
||||||
|
- restore_pyspec_cached_venv
|
||||||
|
- run:
|
||||||
|
name: Run py-tests
|
||||||
|
command: make citest fork=capella
|
||||||
|
- store_test_results:
|
||||||
|
path: tests/core/pyspec/test-reports
|
||||||
|
|
||||||
table_of_contents:
|
table_of_contents:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:10.16.3
|
- image: circleci/node:10.16.3
|
||||||
|
|
|
@ -37,11 +37,16 @@ ALTAIR_FORK_EPOCH: 74240 # Oct 27, 2021, 10:56:23am UTC
|
||||||
# Merge
|
# Merge
|
||||||
MERGE_FORK_VERSION: 0x02000000
|
MERGE_FORK_VERSION: 0x02000000
|
||||||
MERGE_FORK_EPOCH: 18446744073709551615
|
MERGE_FORK_EPOCH: 18446744073709551615
|
||||||
|
# Capella
|
||||||
|
CAPELLA_FORK_VERSION: 0x03000000
|
||||||
|
CAPELLA_FORK_EPOCH: 18446744073709551615
|
||||||
# Sharding
|
# Sharding
|
||||||
SHARDING_FORK_VERSION: 0x03000000
|
SHARDING_FORK_VERSION: 0x04000000
|
||||||
SHARDING_FORK_EPOCH: 18446744073709551615
|
SHARDING_FORK_EPOCH: 18446744073709551615
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Time parameters
|
# Time parameters
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
# 12 seconds
|
# 12 seconds
|
||||||
|
|
|
@ -44,8 +44,6 @@ SHARDING_FORK_VERSION: 0x04000001
|
||||||
SHARDING_FORK_EPOCH: 18446744073709551615
|
SHARDING_FORK_EPOCH: 18446744073709551615
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Time parameters
|
# Time parameters
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
# [customized] Faster for testing purposes
|
# [customized] Faster for testing purposes
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
# Minimal preset - Sharding
|
|
@ -0,0 +1 @@
|
||||||
|
# Minimal preset - Sharding
|
Loading…
Reference in New Issue