diff options
Diffstat (limited to '.github/workflows/macos_test.yml')
-rw-r--r-- | .github/workflows/macos_test.yml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.github/workflows/macos_test.yml b/.github/workflows/macos_test.yml deleted file mode 100644 index 9f88d77..0000000 --- a/.github/workflows/macos_test.yml +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | name: macos_ci | ||
2 | |||
3 | on: [push, pull_request] | ||
4 | |||
5 | jobs: | ||
6 | build-native: | ||
7 | strategy: | ||
8 | matrix: | ||
9 | os: [macos-13, macos-12] | ||
10 | arch: [arm64, x86_64] | ||
11 | runs-on: ${{ matrix.os }} | ||
12 | continue-on-error: false | ||
13 | env: | ||
14 | ARCH: ${{ matrix.arch }} | ||
15 | name: ${{ matrix.os }} - ${{ matrix.arch }} | ||
16 | steps: | ||
17 | - name: Install packages for macos | ||
18 | run: brew install automake | ||
19 | - uses: actions/checkout@main | ||
20 | - name: Run CI script | ||
21 | run: ./scripts/test | ||