Add t1ha, highway and metro to hashset bench #156
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: Build & Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_test_x86: | |
name: Build & Test X86 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --release | |
- name: Test | |
run: cargo test --release | |
build_test_x86_avx2: | |
name: Build & Test X86 AVX2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Switch to nightly rust | |
run: rustup default nightly | |
- name: Build | |
run: cargo build --release | |
- name: Test | |
run: cargo test --release | |
build_test_arm: | |
name: Build & Test ARM | |
runs-on: buildjet-2vcpu-ubuntu-2204-arm | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --release | |
- name: Test | |
run: cargo test --release |