Skip to content

Commit

Permalink
[test] add intel/arm mac
Browse files Browse the repository at this point in the history
_
  • Loading branch information
herumi committed May 27, 2024
1 parent cac553c commit bd84d44
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,32 @@ jobs:
make CXX=clang++
go test -v ./bls
Run-on-macos:
Run-on-Intel-macos:
name: Run on Intel macos
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.18.x'
- run: |
git submodule update --init --recursive
brew install nasm
make clean
make
go test -v ./bls
Run-on-ARM-macos:
name: Run on macos
# Intel Mac
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.18.x'
- run: |
git submodule update --init --recursive
brew install nasm
make clean
make
go test -v ./bls
Expand Down

0 comments on commit bd84d44

Please sign in to comment.