Skip to content

Commit

Permalink
rm test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam committed Jul 18, 2024
1 parent 57a8ad2 commit 3b0be26
Showing 1 changed file with 0 additions and 89 deletions.
89 changes: 0 additions & 89 deletions .github/workflows/tests-linux-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,92 +108,3 @@ jobs:
- name: runtime-api tests
if: ${{ matrix.partition == '1/3' }}
run: forklift cargo nextest run -p sp-api-test --features enable-staging-api

test-linux-stable-oldkernel-wo-fl:
needs: [set-image, changes]
if: ${{ needs.changes.outputs.rust }}
runs-on: oldlinux
timeout-minutes: 60
container:
image: ${{ needs.set-image.outputs.IMAGE }}
# needed for tests that use unshare syscall
options: --security-opt seccomp=unconfined
env:
RUST_TOOLCHAIN: stable
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: script
run: |
# Fixes "detected dubious ownership" error in the ci
git config --global --add safe.directory '*'
cargo nextest run \
--workspace \
--locked \
--release \
--no-fail-fast \
--features try-runtime,experimental,riscv,ci-only-tests \
--partition count:1/3
test-pvf:
needs: [set-image, changes]
if: ${{ needs.changes.outputs.rust }}
runs-on: oldlinux
timeout-minutes: 60
container:
image: ${{ needs.set-image.outputs.IMAGE }}
# needed for tests that use unshare syscall
options: --security-opt seccomp=unconfined
env:
RUST_TOOLCHAIN: stable
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: script
run: cargo test -p polkadot-node-core-pvf artifact_does_not_reprepare_on_non_meaningful_exec_parameter_change --features=ci-only-tests

test-pvf-fl:
needs: [set-image, changes]
if: ${{ needs.changes.outputs.rust }}
runs-on: oldlinux
timeout-minutes: 60
container:
image: ${{ needs.set-image.outputs.IMAGE }}
# needed for tests that use unshare syscall
options: --security-opt seccomp=unconfined
env:
RUST_TOOLCHAIN: stable
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: script
run: forklift cargo test -p polkadot-node-core-pvf artifact_does_not_reprepare_on_non_meaningful_exec_parameter_change --features=ci-only-tests

test-pvf-fl-beefy:
needs: [set-image, changes]
if: ${{ needs.changes.outputs.rust }}
runs-on: arc-runners-polkadot-sdk-beefy
timeout-minutes: 60
container:
image: ${{ needs.set-image.outputs.IMAGE }}
# needed for tests that use unshare syscall
options: --security-opt seccomp=unconfined
env:
RUST_TOOLCHAIN: stable
# Enable debug assertions since we are running optimized builds for testing
# but still want to have debug assertions.
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: script
run: forklift cargo test -p polkadot-node-core-pvf artifact_does_not_reprepare_on_non_meaningful_exec_parameter_change --features=ci-only-tests

0 comments on commit 3b0be26

Please sign in to comment.