Skip to content

Commit

Permalink
test on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrutgers committed Sep 29, 2023
1 parent c968849 commit 693a8cf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,20 @@ jobs:
- name: build
run: dist/ubuntu/build.sh

build-macos:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: bootstrap
run: |
dist/macos/bootstrap.sh
- name: build
run: dist/macos/build.sh

# Dummy job that depends on all other build-* jobs.
build-all-check:
needs: [build-ubuntu]
needs: [build-ubuntu, build-macos]
runs-on: ubuntu-latest
if: success()
outputs:
Expand Down

0 comments on commit 693a8cf

Please sign in to comment.