Skip to content

Commit

Permalink
CI on macos (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
spapinistarkware authored Mar 25, 2024
1 parent 5e418ee commit 60d1432
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ jobs:
alert-comment-cc-users: '@spapinistarkware'

run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest-xlarge]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
1 change: 1 addition & 0 deletions src/core/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use super::fields::qm31::SecureField;
use super::fields::FieldOps;
use super::poly::circle::PolyOps;

#[cfg(target_arch = "x86_64")]
pub mod avx512;
pub mod cpu;

Expand Down
1 change: 0 additions & 1 deletion src/core/fields/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use num_traits::{NumAssign, NumAssignOps, NumOps, One};

use super::backend::ColumnOps;

#[cfg(target_arch = "x86_64")]
pub mod cm31;
pub mod m31;
pub mod qm31;
Expand Down

0 comments on commit 60d1432

Please sign in to comment.