Move determinism check to wasmtime's CI
This commit is contained in:
13
.github/workflows/main.yml
vendored
13
.github/workflows/main.yml
vendored
@@ -219,6 +219,19 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
|
||||||
|
# Verify that cranelift's code generation is deterministic
|
||||||
|
meta_determinist_check:
|
||||||
|
name: Meta deterministic check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: Install Rust
|
||||||
|
run: rustup update stable && rustup default stable
|
||||||
|
- run: cd cranelift/codegen && cargo build --features all-arch
|
||||||
|
- run: ci/ensure_deterministic_build.sh
|
||||||
|
|
||||||
# Builds a Python wheel (package) for Windows/Mac/Linux. Note that we're
|
# Builds a Python wheel (package) for Windows/Mac/Linux. Note that we're
|
||||||
# careful to create binary-compatible releases here to old releases of
|
# careful to create binary-compatible releases here to old releases of
|
||||||
# Windows/Mac/Linux. This will also build wheels for Python 3.6, 3.7 and 3.8.
|
# Windows/Mac/Linux. This will also build wheels for Python 3.6, 3.7 and 3.8.
|
||||||
|
|||||||
12
cranelift/.github/workflows/main.yml
vendored
12
cranelift/.github/workflows/main.yml
vendored
@@ -13,15 +13,3 @@ jobs:
|
|||||||
- run: cargo install cargo-deadlinks
|
- run: cargo install cargo-deadlinks
|
||||||
- run: find ./target/doc -maxdepth 1 -type d -name "cranelift*" | xargs -I{} cargo deadlinks --dir {}
|
- run: find ./target/doc -maxdepth 1 -type d -name "cranelift*" | xargs -I{} cargo deadlinks --dir {}
|
||||||
name: Run cargo-deadlinks
|
name: Run cargo-deadlinks
|
||||||
|
|
||||||
meta_determinist_check:
|
|
||||||
name: Meta deterministic check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
- name: Install Rust
|
|
||||||
run: rustup update stable && rustup default stable
|
|
||||||
- run: cargo build
|
|
||||||
- run: ci/ensure_deterministic_build.sh
|
|
||||||
|
|||||||
Reference in New Issue
Block a user