@@ -153,7 +153,7 @@ jobs:
153
153
# $LLVM_EAGER_JIT_BUILD_OPTIONS,
154
154
]
155
155
iwasm_make_options_feature : [
156
- # Features to be tested: IPFS and wasi-threads
156
+ # Features to be tested: IPFS
157
157
" -DWAMR_BUILD_SGX_IPFS=1" ,
158
158
]
159
159
platform : [linux-sgx]
@@ -268,14 +268,19 @@ jobs:
268
268
strategy :
269
269
matrix :
270
270
running_mode : ["classic-interp", "fast-interp", "aot"]
271
- test_option : ["-x -p -s spec -b -P", "-x -p -s spec -S -b -P"]
271
+ test_option : ["-x -p -s spec -b -P", "-x -p -s spec -S -b -P", "-x -p -s spec -X -b -P" ]
272
272
llvm_cache_key : ["${{ needs.build_llvm_libraries.outputs.cache_key }}"]
273
- # classic-interp and fast-interp don't support simd
274
273
exclude :
274
+ # classic-interp and fast-interp don't support simd
275
275
- running_mode : " classic-interp"
276
276
test_option : " -x -p -s spec -S -b -P"
277
277
- running_mode : " fast-interp"
278
278
test_option : " -x -p -s spec -S -b -P"
279
+ # classic-interp and fast-interp don't support XIP
280
+ - running_mode : " classic-interp"
281
+ test_option : " -x -p -s spec -X -b -P"
282
+ - running_mode : " fast-interp"
283
+ test_option : " -x -p -s spec -X -b -P"
279
284
280
285
steps :
281
286
- name : checkout
0 commit comments