Skip to content

Commit

Permalink
ci: add workflow (take two)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Oct 1, 2024
1 parent 3582632 commit fef5245
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ jobs:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest

runs-on: ${{matrix.os}}

Expand All @@ -46,6 +43,11 @@ jobs:
cargo --version
cargo clippy --version
- name: Apt Dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake g++ gcc git make nasm ninja-build
- name: Build
run: |
cargo build --bin pxsum --target ${{ matrix.target }}
Expand Down

0 comments on commit fef5245

Please sign in to comment.