From 940e9553fd384d482646810ca6a4609604ce5491 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 19 Apr 2024 06:12:33 -0400 Subject: [PATCH] Add missing crates to GH workflows --- .github/workflows/common-tests.yml | 3 ++- .github/workflows/coordinator-tests.yml | 2 +- .github/workflows/full-stack-tests.yml | 2 +- .github/workflows/message-queue-tests.yml | 2 +- .github/workflows/processor-tests.yml | 2 +- .github/workflows/reproducible-runtime.yml | 2 +- .github/workflows/tests.yml | 3 +++ 7 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/common-tests.yml b/.github/workflows/common-tests.yml index 0135fcaf..f0545f0b 100644 --- a/.github/workflows/common-tests.yml +++ b/.github/workflows/common-tests.yml @@ -28,4 +28,5 @@ jobs: -p std-shims \ -p zalloc \ -p serai-db \ - -p serai-env + -p serai-env \ + -p simple-request diff --git a/.github/workflows/coordinator-tests.yml b/.github/workflows/coordinator-tests.yml index 7cc4d7b3..138fd106 100644 --- a/.github/workflows/coordinator-tests.yml +++ b/.github/workflows/coordinator-tests.yml @@ -37,4 +37,4 @@ jobs: uses: ./.github/actions/build-dependencies - name: Run coordinator Docker tests - run: cd tests/coordinator && GITHUB_CI=true RUST_BACKTRACE=1 cargo test + run: cd tests/coordinator && GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features diff --git a/.github/workflows/full-stack-tests.yml b/.github/workflows/full-stack-tests.yml index 3d1c86a1..baacf774 100644 --- a/.github/workflows/full-stack-tests.yml +++ b/.github/workflows/full-stack-tests.yml @@ -19,4 +19,4 @@ jobs: uses: ./.github/actions/build-dependencies - name: Run Full Stack Docker tests - run: cd tests/full-stack && GITHUB_CI=true RUST_BACKTRACE=1 cargo test + run: cd tests/full-stack && GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features diff --git a/.github/workflows/message-queue-tests.yml b/.github/workflows/message-queue-tests.yml index 273af237..7894549c 100644 --- a/.github/workflows/message-queue-tests.yml +++ b/.github/workflows/message-queue-tests.yml @@ -33,4 +33,4 @@ jobs: uses: ./.github/actions/build-dependencies - name: Run message-queue Docker tests - run: cd tests/message-queue && GITHUB_CI=true RUST_BACKTRACE=1 cargo test + run: cd tests/message-queue && GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features diff --git a/.github/workflows/processor-tests.yml b/.github/workflows/processor-tests.yml index 88f4429c..0b5ecbbe 100644 --- a/.github/workflows/processor-tests.yml +++ b/.github/workflows/processor-tests.yml @@ -37,4 +37,4 @@ jobs: uses: ./.github/actions/build-dependencies - name: Run processor Docker tests - run: cd tests/processor && GITHUB_CI=true RUST_BACKTRACE=1 cargo test + run: cd tests/processor && GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features diff --git a/.github/workflows/reproducible-runtime.yml b/.github/workflows/reproducible-runtime.yml index 16256ab6..d34e5ca5 100644 --- a/.github/workflows/reproducible-runtime.yml +++ b/.github/workflows/reproducible-runtime.yml @@ -33,4 +33,4 @@ jobs: uses: ./.github/actions/build-dependencies - name: Run Reproducible Runtime tests - run: cd tests/reproducible-runtime && GITHUB_CI=true RUST_BACKTRACE=1 cargo test + run: cd tests/reproducible-runtime && GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 257c1dd5..e32d2119 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,6 +43,7 @@ jobs: -p tendermint-machine \ -p tributary-chain \ -p serai-coordinator \ + -p serai-orchestrator \ -p serai-docker-tests test-substrate: @@ -64,7 +65,9 @@ jobs: -p serai-validator-sets-pallet \ -p serai-in-instructions-primitives \ -p serai-in-instructions-pallet \ + -p serai-signals-primitives \ -p serai-signals-pallet \ + -p serai-abi \ -p serai-runtime \ -p serai-node