Skip to content

Commit

Permalink
CI: add macOS arm64 job
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilos authored Feb 5, 2024
1 parent c2a5401 commit d447b7e
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Ubuntu
run: |
./configure --with-fastfloat --with-threaded
Expand All @@ -23,18 +23,21 @@ jobs:
Ubuntu-20-04:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Ubuntu
run: |
./configure --with-fastfloat --with-threaded
make
make check
MacOS:
runs-on: macos-latest
macOS:
strategy:
matrix:
runner: [ macos-12, macos-14 ]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v2
- name: Build MacOS
- uses: actions/checkout@v4
- name: Build macOS
run: |
./configure --with-fastfloat --with-threaded
make
Expand All @@ -44,7 +47,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
Expand All @@ -59,7 +62,7 @@ jobs:
Windows-32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: win32
Expand All @@ -74,7 +77,7 @@ jobs:
Ubuntu-meson:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install packages
run: |
Expand All @@ -91,7 +94,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install packages
run: |
Expand Down

0 comments on commit d447b7e

Please sign in to comment.