Skip to content

Commit 437b81d

Browse files
committed
Add continue-on-error flag to test steps for improved resilience
1 parent 9e9bf41 commit 437b81d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,34 +111,39 @@ jobs:
111111
112112
# GO!GO!!GO!!!
113113
- name: run samples
114+
continue-on-error: true
114115
uses: ./.github/actions/run-samples
115116
with:
116117
arch: ${{ matrix.arch }}
117118
llvm_cache_key: ${{ matrix.llvm_cache_key }}
118119
os: ${{ matrix.os }}
119120

120121
- name: run spec tests
122+
continue-on-error: true
121123
uses: ./.github/actions/run-spec-tests
122124
with:
123125
arch: ${{ matrix.arch }}
124126
llvm_cache_key: ${{ matrix.llvm_cache_key }}
125127
os: ${{ matrix.os }}
126128

127129
- name: run wamr compiler tests
130+
continue-on-error: true
128131
uses: ./.github/actions/run-wamr-compiler-tests
129132
with:
130133
arch: ${{ matrix.arch }}
131134
llvm_cache_key: ${{ matrix.llvm_cache_key }}
132135
os: ${{ matrix.os }}
133136

134137
- name: run wasi tests
138+
continue-on-error: true
135139
uses: ./.github/actions/run-wasi-tests
136140
with:
137141
arch: ${{ matrix.arch }}
138142
llvm_cache_key: ${{ matrix.llvm_cache_key }}
139143
os: ${{ matrix.os }}
140144

141145
- name: run unit tests
146+
continue-on-error: true
142147
uses: ./.github/actions/run-unit-tests
143148
with:
144149
arch: ${{ matrix.arch }}

0 commit comments

Comments
 (0)