Skip to content

Commit 7c35f48

Browse files
committed
Merge branch 'master' into ci/tests_refactor
2 parents 58756de + 14e66c9 commit 7c35f48

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ jobs:
156156
pattern: tests-results-qemu-*
157157
path: ./results/qemu
158158

159+
- run: |
160+
ls -R ./results
161+
159162
- name: Publish Unit Test Results
160163
uses: EnricoMi/publish-unit-test-result-action@v2
161164
with:

.github/workflows/wokwi.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
- name: Evaluate if tests should be run
4545
id: check-tests
4646
run: |
47-
echo "Action: ${{ github.event.action }}"
4847
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
4948
enabled=true
5049
@@ -96,14 +95,15 @@ jobs:
9695
run: |
9796
bash .github/scripts/tests_run.sh -c -type ${{ inputs.type }} -t ${{inputs.chip}} -i 0 -m 1 -W ${{env.WOKWI_TIMEOUT}}
9897
99-
- name: Upload ${{ inputs.chip }} ${{ inputs.type }} Wokwi results as cache
100-
uses: actions/cache/save@v4
101-
if: ${{ always() && steps.check-tests.outputs.enabled == 'true' }}
102-
with:
103-
key: tests-${{ env.id }}-results-wokwi
104-
path: |
105-
tests/**/*.xml
106-
tests/**/result_*.json
98+
# Disabled as Wokwi infrastrucutre is not stable (so we can re-trigger the tests manually)
99+
# - name: Upload ${{ inputs.chip }} ${{ inputs.type }} Wokwi results as cache
100+
# uses: actions/cache/save@v4
101+
# if: ${{ always() && steps.check-tests.outputs.enabled == 'true' }}
102+
# with:
103+
# key: tests-${{ env.id }}-results-wokwi
104+
# path: |
105+
# tests/**/*.xml
106+
# tests/**/result_*.json
107107

108108
- name: Upload ${{ inputs.chip }} ${{ inputs.type }} Wokwi results as artifacts
109109
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)