Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Mar 15, 2024
1 parent 95e48b3 commit e205d27
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
target: [aarch64-unknown-linux-gnu, x86_64-unknown-linux-gnu]
target: [aarch64-unknown-linux-gnu]

name: Build Docker Image
runs-on: ubuntu-latest
Expand All @@ -193,13 +193,16 @@ jobs:
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
target: ["${{ matrix.target }}"]
with:
targets: "${{ matrix.target }}"
- uses: swatinem/rust-cache@v2
with:
key: ${{ github.job }}-${{ matrix.arch }}
- name: Get Cross
run: cargo install cross
- name: Compile
run: |
cargo build --all-features --release --target "${{ matrix.target }}"
cargo cross build --all-features --release --target "${{ matrix.target }}"
# build:
Expand Down

0 comments on commit e205d27

Please sign in to comment.