Skip to content

Commit 0c4cf2b

Browse files
committed
clean up + uncomment df1 compat tests
1 parent 7ae5aef commit 0c4cf2b

2 files changed

Lines changed: 27 additions & 35 deletions

File tree

.github/workflows/devenv-compat.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -202,16 +202,6 @@ jobs:
202202
echo "ci_summary.txt not found" >> $GITHUB_STEP_SUMMARY
203203
fi
204204
205-
- name: Save Smoke tests Docker logs
206-
if: failure()
207-
shell: bash
208-
working-directory: system-tests/tests/smoke/cre
209-
run: |
210-
mkdir -p logs
211-
for c in $(docker ps -a --format '{{.Names}}'); do
212-
docker logs "$c" > "logs/${c}.log" 2>&1
213-
done
214-
215205
- name: Upload Logs
216206
if: always()
217207
uses: actions/upload-artifact@v4

.github/workflows/devenv-nightly-compat.yml

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -38,33 +38,35 @@ jobs:
3838
# Data Feeds v1 cluster compatibility and upgrade test
3939
# this verifies that the cluster can be upgraded from last - N version to last version
4040
# use it as an example project
41-
# df1-compat:
42-
# uses: ./.github/workflows/devenv-compat.yml
43-
# with:
44-
# # bash command to build your environment, omit if you are using 'devenv'
45-
# buildcmd: "just cli"
46-
# # bash command to spin up your environment and product orchestration
47-
# envcmd: "cl u env.toml,products/ocr2/basic.toml"
48-
# # bash command to run the test verifying your product
49-
# testcmd: "cl test ocr2 TestSmoke/rounds"
50-
# # number of CL nodes to upgrade with new version
51-
# upgrade-nodes: "3"
52-
# # cl node Docker cocntainer name template, omit if you are using 'devenv'
53-
# node-name-template: "don-node%d"
54-
# # previous versions to test (sorted by tags, SemVer)
55-
# versions-back: "2"
56-
# # directory with your developer environment to run buildcmd and envcmd
57-
# working-directory: "devenv"
58-
# # directory for executing your tests, to run testcmd
59-
# logs-directory: "./devenv/tests/ocr2/logs"
60-
# # CTF log level
61-
# ctf-log-level: "info"
62-
# # this is needed to remove 'v' from Git tags to match SDLC ECR tags
63-
# strip-image-suffix: "v"
64-
# secrets: inherit
41+
df1-compat:
42+
uses: ./.github/workflows/devenv-compat.yml
43+
name: Data Feeds v1 Compatibility and Upgrade Test
44+
with:
45+
# bash command to build your environment, omit if you are using 'devenv'
46+
buildcmd: "just cli"
47+
# bash command to spin up your environment and product orchestration
48+
envcmd: "cl u env.toml,products/ocr2/basic.toml"
49+
# bash command to run the test verifying your product
50+
testcmd: "cl test ocr2 TestSmoke/rounds"
51+
# number of CL nodes to upgrade with new version
52+
upgrade-nodes: "3"
53+
# cl node Docker container name template, omit if you are using 'devenv'
54+
node-name-template: "don-node%d"
55+
# previous versions to test (sorted by tags, SemVer)
56+
versions-back: "2"
57+
# directory with your developer environment to run buildcmd and envcmd
58+
working-directory: "devenv"
59+
# directory for executing your tests, to run testcmd
60+
logs-directory: "./devenv/tests/ocr2/logs"
61+
# CTF log level
62+
ctf-log-level: "info"
63+
# this is needed to remove 'v' from Git tags to match SDLC ECR tags
64+
strip-image-suffix: "v"
65+
secrets: inherit
6566

6667
cre-compat:
6768
uses: ./.github/workflows/devenv-compat.yml
69+
name: CRE Compatibility and Upgrade Test
6870
with:
6971
# bash command to build your environment, omit if you are using 'devenv'
7072
buildcmd: "echo nothing-to-build"
@@ -74,7 +76,7 @@ jobs:
7476
testcmd: "go test -v -run Test_Upgrade_Suite ./smoke/cre"
7577
# number of CL nodes to upgrade with new version
7678
upgrade-nodes: "3"
77-
# cl node Docker cocntainer name template, omit if you are using 'devenv'
79+
# cl node Docker container name template, omit if you are using 'devenv'
7880
node-name-template: "workflow-node%d"
7981
# previous versions to test (sorted by tags, SemVer)
8082
versions-back: "2"

0 commit comments

Comments
 (0)