Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sagudev authored Jul 20, 2024
1 parent a3b8ec2 commit 9b1facd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,18 @@ jobs:
sudo apt-get update
sudo apt-get install -y libegl1-mesa-dev libgtk-3-dev libsdl2-dev cmake
- name: Build arm64 simd
if: ${{ matrix.platform.target == 'aarch64-unknown-linux-gnu' }}
run: cargo build --target ${{ matrix.platform.target }}
working-directory: simd

- name: Build arm64 geometry
if: ${{ matrix.platform.target == 'aarch64-unknown-linux-gnu' }}
run: cargo build --target ${{ matrix.platform.target }}
working-directory: geometry

- name: Build
if: ${{ matrix.platform.target != 'aarch64-unknown-linux-gnu' }}
run: cargo build --target ${{ matrix.platform.target }}

- name: Test
Expand Down

0 comments on commit 9b1facd

Please sign in to comment.