diff options
author | Joshua Sing <joshua@hypera.dev> | 2023-11-08 18:55:38 +1100 |
---|---|---|
committer | Joshua Sing <joshua@hypera.dev> | 2023-11-08 19:01:00 +1100 |
commit | 59c22267b9edeaa7200033bc3c5368404127947e (patch) | |
tree | 576d6f5b326e48d5b4947df649a3d0b2772b1506 /.github/workflows/macos_test.yml | |
parent | b16146e09b07d939cf028f7f431ef34dc013ebaf (diff) | |
download | portable-59c22267b9edeaa7200033bc3c5368404127947e.tar.gz portable-59c22267b9edeaa7200033bc3c5368404127947e.tar.bz2 portable-59c22267b9edeaa7200033bc3c5368404127947e.zip |
ci: clean up macOS workflow
Diffstat (limited to '')
-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 | ||