refactor: fix bls12377 compile #196
Workflow file for this run
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 | |
on: | |
pull_request: | |
types: | |
- ready_for_review | |
- opened | |
branches: | |
- main | |
- dev | |
paths: | |
- icicle/** | |
- src/** | |
- Cargo.toml | |
- build.rs | |
push: | |
branches-ignore: | |
- main | |
- dev | |
paths: | |
- icicle/** | |
- src/** | |
- Cargo.toml | |
- build.rs | |
env: | |
CARGO_TERM_COLOR: always | |
ARCH_TYPE: sm_70 | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout code | |
- uses: actions/checkout@v3 | |
# Download (or from cache) and install CUDA Toolkit 12.1.0 | |
- uses: Jimver/[email protected] | |
id: cuda-toolkit | |
with: | |
cuda: '12.1.0' | |
use-github-cache: true | |
# Build from cargo - Rust utils are preinstalled on latest images | |
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#rust-tools | |
- name: Build | |
run: cargo build --release --verbose | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Jimver/[email protected] | |
id: cuda-toolkit | |
with: | |
cuda: '12.1.0' | |
use-github-cache: true | |
- name: Build | |
run: cargo build --release --verbose |