Skip to content

Commit

Permalink
Add macOS-latest-make job to CI build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tairov committed Jul 25, 2023
1 parent 629fff9 commit 5911a89
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,32 @@ jobs:
id: make_build_runfast
run: |
make runfast
macOS-latest-make:
runs-on: macos-latest

steps:
- name: Clone
id: checkout
uses: actions/checkout@v1

- name: Dependencies
id: depends
continue-on-error: true
run: |
brew update
- name: Build
id: make_build
run: |
make
- name: Build runfast
id: make_build_runfast
run: |
make runfast
- name: Build clang
id: make_build_clang
run: |
make clang

0 comments on commit 5911a89

Please sign in to comment.