Skip to content

Commit

Permalink
Test getting started guide with ARM && AMD
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Jun 14, 2024
1 parent 6fdc19e commit 8c0f7d3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:
run: cargo test --locked -- --ignored

print-pack-getting-started-output:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.arch == 'arm64' && 'pub-hk-ubuntu-22.04-arm-medium' || 'ubuntu-latest' }}
strategy:
matrix:
arch: ["arm64", "amd64"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -69,7 +72,7 @@ jobs:
- name: Update Rust toolchain
run: rustup update
- name: Install Rust linux-musl target
run: rustup target add x86_64-unknown-linux-musl
run: rustup target add ${{ matrix.arch == 'amd64' && 'x86_64-unknown-linux-musl' || 'aarch64-unknown-linux-musl' }}
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Install Pack CLI
Expand Down

0 comments on commit 8c0f7d3

Please sign in to comment.