feat(startauthsession): Add support full symmetric algorithm/bits/mode combinations #177
Workflow file for this run
This file contains hidden or 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: Integration Tests | |
| on: | |
| push: | |
| paths: | |
| - 'src/**' | |
| - 'tests/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '.github/workflows/test.yml' | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'tests/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '.github/workflows/test.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| integration-test: | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - "1.90.0" | |
| - stable | |
| os-arch: | |
| - ubuntu-24.04-x86_64 | |
| - ubuntu-24.04-aarch64 | |
| include: | |
| - os-arch: ubuntu-24.04-x86_64 | |
| runner: ubuntu-24.04 | |
| target: x86_64-unknown-linux-gnu | |
| - os-arch: ubuntu-24.04-aarch64 | |
| runner: ubuntu-24.04-arm | |
| target: aarch64-unknown-linux-gnu | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| target: ${{ matrix.target }} | |
| - uses: ./.github/actions/install-tpm2-tss | |
| # - run: sudo apt-get update && sudo apt-get install -y libtss2-dev pkg-config | |
| - name: Install swtpm | |
| run: sudo apt-get install -y swtpm | |
| - name: Run integration tests | |
| env: | |
| TSS2_ESYS_STATIC: 1 | |
| TSS2_SYS_STATIC: 1 | |
| TSS2_MU_STATIC: 1 | |
| TSS2_TCTILDR_STATIC: 1 | |
| run: cargo test --all-targets |