Skip to content

Commit 651226a

Browse files
- New k8s.core_v1 release candidate.
1 parent fad0736 commit 651226a

File tree

5 files changed

+152815
-20155
lines changed

5 files changed

+152815
-20155
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
- name: Output from mocked functional tests
175175
if: always()
176176
run: |
177-
cat ./test/robot/functional/output.xml || echo "no functional test output present"
177+
cat ./test/robot/functional/reports/output.xml || echo "no functional test output present"
178178
179179
- name: Run robot integration tests
180180
if: env.AZURE_CLIENT_SECRET != '' && startsWith(env.STATE_SOURCE_TAG, 'build-release')
@@ -381,7 +381,7 @@ jobs:
381381
- name: Output from mocked functional tests
382382
if: always()
383383
run: |
384-
cat ./test/robot/functional/output.xml
384+
cat ./test/robot/functional/reports/output.xml
385385
386386
- name: Run robot mocked functional tests with aggressive concurrency
387387
if: success()
@@ -391,7 +391,7 @@ jobs:
391391
- name: Output from mocked functional tests with aggressive concurrency
392392
if: always()
393393
run: |
394-
cat ./test/robot/functional/output.xml
394+
cat ./test/robot/functional/reports/output.xml
395395
396396
- name: Run robot integration tests
397397
if: env.AZURE_CLIENT_SECRET != '' && startsWith(env.STATE_SOURCE_TAG, 'build-release')
@@ -452,7 +452,7 @@ jobs:
452452
- name: Output from mocked deb package functional tests
453453
if: always()
454454
run: |
455-
cat ./test/robot/functional/output.xml
455+
cat ./test/robot/functional/reports/output.xml
456456
457457
- name: Upload deb Artifact
458458
uses: actions/upload-artifact@v4.3.1
@@ -637,7 +637,7 @@ jobs:
637637
- name: Output from mocked functional tests
638638
if: always()
639639
run: |
640-
cat ./test/robot/functional/output.xml
640+
cat ./test/robot/functional/reports/output.xml
641641
642642
- name: Run robot mocked functional tests with aggressive concurrency
643643
if: success()
@@ -647,7 +647,7 @@ jobs:
647647
- name: Output from mocked functional tests with aggressive concurrency
648648
if: always()
649649
run: |
650-
cat ./test/robot/functional/output.xml
650+
cat ./test/robot/functional/reports/output.xml
651651
652652
- name: Run robot integration tests
653653
if: env.AZURE_CLIENT_SECRET != '' && startsWith(env.STATE_SOURCE_TAG, 'build-release')
@@ -735,7 +735,7 @@ jobs:
735735
- name: Output from mocked deb package functional tests
736736
if: always()
737737
run: |
738-
cat ./test/robot/functional/output.xml
738+
cat ./test/robot/functional/reports/output.xml
739739
740740
- name: Upload deb Artifact
741741
uses: actions/upload-artifact@v4.3.1
@@ -833,7 +833,7 @@ jobs:
833833
name: Output from mocked functional tests
834834
if: always()
835835
run: |
836-
cat ./test/robot/functional/output.xml
836+
cat ./test/robot/functional/reports/output.xml
837837
838838
- shell: wsl-bash {0}
839839
name: Run robot integration tests
@@ -971,7 +971,7 @@ jobs:
971971
- name: Output from mocked functional tests
972972
if: always()
973973
run: |
974-
cat ./test/robot/functional/output.xml
974+
cat ./test/robot/functional/reports/output.xml
975975
976976
- name: Run robot integration tests
977977
if: env.AZURE_CLIENT_SECRET != '' && startsWith(env.STATE_SOURCE_TAG, 'build-release')
@@ -1258,7 +1258,7 @@ jobs:
12581258
- name: Output from mocked functional tests
12591259
if: always()
12601260
run: |
1261-
cat ./test/robot/functional/output.xml
1261+
cat ./test/robot/functional/reports/output.xml
12621262
12631263
- name: Run robot integration tests
12641264
if: env.AZURE_CLIENT_SECRET != '' && startsWith(env.STATE_SOURCE_TAG, 'build-release')

cicd/python/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run_robot_mocked_functional_tests_stackql(*args, **kwargs) -> int:
4343
return subprocess.call(
4444
'robot '
4545
f'{variables} '
46-
'-d test/robot/functional '
46+
'-d test/robot/functional/reports '
4747
'test/robot/functional',
4848
shell=True
4949
)

0 commit comments

Comments
 (0)