From f991469b243203c19a7dfa3eac820cbaba8c82f6 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Mon, 27 May 2024 10:03:12 +0900 Subject: [PATCH] [test] add intel/arm ma --- .github/workflows/main.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37467de..ff792f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,14 +14,27 @@ 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 + - 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 - run: | git submodule update --init --recursive - brew install nasm make clean make go test -v ./bls