This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
chore: cleanup feature flags, merge taskmanager #1871
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
test_stable: | |
runs-on: ubuntu-latest-16-core | |
strategy: | |
fail-fast: false | |
name: stable - Test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-rust | |
with: | |
AWS_ACCESS_KEY_ID: ${{ secrets.ROBOT_AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.ROBOT_AWS_SECRET_ACCESS_KEY}} | |
- run: cargo nextest run --workspace --exclude topos-sequencer-subnet-runtime && cargo test --doc --workspace | |
env: | |
RUST_LOG: warn,topos=info | |
test_nightly: | |
runs-on: ubuntu-latest-16-core | |
strategy: | |
fail-fast: false | |
name: nightly - Test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-rust | |
with: | |
toolchain: nightly | |
AWS_ACCESS_KEY_ID: ${{ secrets.ROBOT_AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.ROBOT_AWS_SECRET_ACCESS_KEY}} | |
- run: cargo nextest run --workspace --exclude topos-sequencer-subnet-runtime && cargo test --doc --workspace | |
env: | |
RUST_LOG: topos=warn | |
cert_delivery: | |
runs-on: ubuntu-latest-16-core | |
needs: [test_stable] | |
strategy: | |
fail-fast: true | |
matrix: | |
value: ["first", "second", "third"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-rust | |
with: | |
AWS_ACCESS_KEY_ID: ${{ secrets.ROBOT_AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.ROBOT_AWS_SECRET_ACCESS_KEY}} | |
- run: cargo nextest run cert_delivery --locked --no-default-features -F tce | |
env: | |
RUST_LOG: topos=warn |