summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStevenWdV <stevenwdv@gmail.com>2022-02-10 16:15:21 +0100
committerStevenWdV <stevenwdv@gmail.com>2022-02-10 16:15:21 +0100
commit7798aac9279bb03baaa576059f2c19b283cd39bb (patch)
treefb7cca4316cc5d7c07c74fb5800116e7f5a1e976
parentc5a67a71d3c32e0d5c127d2fe2928f3457f98d9b (diff)
Remove macOS workflow again because of System Integrity Protection [skip ci]
-rw-r--r--.github/workflows/test-mac.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/.github/workflows/test-mac.yml b/.github/workflows/test-mac.yml
deleted file mode 100644
index 4a06297..0000000
--- a/.github/workflows/test-mac.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-name: "[macOS] Test & check build"
-
-on: [ push, pull_request ]
-
-jobs:
- test-go:
- name: "[macOS] Test Go"
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-go@v2
- with:
- go-version: ^1.15
- - run: make test-go
-
- build-lib:
- name: "[macOS] Build shared Go library"
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-go@v2
- with:
- go-version: ^1.15
- - run: make
- - uses: actions/upload-artifact@v2
- with:
- name: shared-lib
- path: exports/lib/
- retention-days: 1
-
- test-swift:
- name: "[macOS] Test Swift wrapper"
- needs: build-lib
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v2
- # Note: Swift is already included
-
- - uses: actions/download-artifact@v2
- with:
- name: shared-lib
- path: exports/lib/
- - name: Test
- run: make -C wrappers/swift test