diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2024-03-26 12:17:09 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 08:17:09 -0700 |
commit | 356931a867c7d642bc282fff46a1c95ab0e843f3 (patch) | |
tree | 620d110a66150704dd417d94ea04f588eb8118a6 /.github | |
parent | ff0316825d481226c8933e2e8c466ef3ec53067b (diff) | |
download | wabt-356931a867c7d642bc282fff46a1c95ab0e843f3.tar.gz wabt-356931a867c7d642bc282fff46a1c95ab0e843f3.tar.bz2 wabt-356931a867c7d642bc282fff46a1c95ab0e843f3.zip |
Add macOS arm64 support and CI testing (#2406)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 331f0108..21604429 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,9 +30,9 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-12, windows-latest] + os: [ubuntu-latest, macos-12, macos-14, windows-latest] steps: - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v5 with: python-version: '3.x' - uses: actions/checkout@v1 @@ -43,7 +43,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: install ninja (osx) run: brew install ninja - if: matrix.os == 'macos-12' + if: matrix.os == 'macos-12' || matrix.os == 'macos-14' - name: install ninja (win) run: choco install ninja if: matrix.os == 'windows-latest' |