Skip to content

Commit

Permalink
[win] use release binary
Browse files Browse the repository at this point in the history
  • Loading branch information
herumi committed Jan 4, 2024
1 parent 3aece00 commit 2d27404
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@ name: test
on: [push]

jobs:
# Run-on-ubuntu:
# name: Run on ubuntu
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: |
# git submodule update --init --recursive
# sudo apt install nasm
# make clean
# make CXX=clang++
# go test -v ./bls
#
# Run-on-macos:
# name: Run on macos
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - run: |
# git submodule update --init --recursive
# brew install nasm
# make clean
# make
# go test -v ./bls
Run-on-ubuntu:
name: Run on ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git submodule update --init --recursive
sudo apt install nasm
make clean
make CXX=clang++
go test -v ./bls
Run-on-macos:
name: Run on macos
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: |
git submodule update --init --recursive
brew install nasm
make clean
make
go test -v ./bls
Run-on-windows:
name: Run on windows
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: msys2/setup-msys2@v2
- uses: actions/checkout@v4
- run: |
git checkout -b dev origin/dev
git submodule update --init --recursive
make MCL_STATIC_CODE=0
git checkout -b release origin/release
#git submodule update --init --recursive
#make MCL_STATIC_CODE=0
go test -v ./bls

0 comments on commit 2d27404

Please sign in to comment.