Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

CI test executor with wasmtime #4005

Merged
merged 1 commit into from
Nov 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,21 @@ test-srml-staking: &test-srml-staking
- time cargo test --release --verbose --no-default-features --features std
- sccache -s





test-wasmtime: &test-wasmtime
stage: test
<<: *docker-env
variables:
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: -Cdebug-assertions=y
RUST_BACKTRACE: 1
except:
variables:
- $DEPLOY_TAG
script:
- cd core/executor
- WASM_BUILD_NO_COLOR=1 time cargo test --release --verbose --features wasmtime
- sccache -s

test-linux-stable-int:
<<: *test-linux
Expand Down