Skip to content

Commit

Permalink
try more platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
pacak committed Oct 12, 2024
1 parent 08cd606 commit bde5f78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest"] # "windows-latest", "macos-latest"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
name: Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
if: github.ref != 'refs/heads/master'
strategy:
matrix:
os: ["ubuntu-latest"] # "windows-latest", "macos-latest"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
name: ${{ matrix.os }} difference vs master
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -165,11 +165,11 @@ jobs:
run: ./.github/check.sh --manifest-path sample_cdylib/Cargo.toml _mul

- name: merged functions real
if: ${{ !cancelled() }}
if: ${{ !cancelled() && matrix.os != "macos-latest" }} # uses x86 primops
run: ./.github/check.sh --manifest-path sample_merged/Cargo.toml sample_merged::merged_0

- name: merged functions merged
if: ${{ !cancelled() }}
if: ${{ !cancelled() && matrix.os != "macos-latest" }} # uses x86 primops
run: ./.github/check.sh --manifest-path sample_merged/Cargo.toml sample_merged::merged_1

- name: merged functions real
Expand Down

0 comments on commit bde5f78

Please sign in to comment.