Support Intel Macs #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
linux: | |
name: linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make all | |
- name: Run tests | |
run: ./build/test | |
windows: | |
name: windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install MinGW | |
run: | | |
choco install mingw | |
echo "C:\tools\mingw64\bin" >> $GITHUB_PATH | |
- name: Build | |
run: CC=gcc make all | |
shell: bash | |
- name: Run tests | |
run: ./build/test.exe | |
shell: bash | |
macos-arm: | |
name: macos-arm | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make all | |
- name: Run tests | |
run: ./build/test | |
macos-intel: | |
name: macos-arm | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make all | |
- name: Run tests | |
run: ./build/test | |
rust-bindings: | |
runs-on: ubuntu-latest | |
name: (${{ matrix.target }}) | |
strategy: | |
matrix: | |
target: [ | |
x86_64-unknown-linux-gnu, | |
aarch64-unknown-linux-gnu, | |
] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install rustup | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh | |
sh rustup-init.sh -y --default-toolchain none | |
rustup target add ${{ matrix.target }} | |
- name: Build and Test | |
run: | | |
cargo build --release | |
cargo test | |
nim: | |
name: nim | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jiro4989/setup-nim-action@v1 | |
- uses: actions/checkout@v3 | |
- name: Run Nim test | |
run: nim c -r tests/test_hashtree_abi.nim |