chore(CI): use nightly rust

This commit is contained in:
Mayeul@Zama
2023-03-09 15:55:14 +01:00
committed by Quentin Bourgerie
parent 55c6dbd315
commit d2bfa03104
6 changed files with 12 additions and 8 deletions

View File

@@ -86,7 +86,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
- name: Build compiler benchmarks

View File

@@ -66,7 +66,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
- name: Create build dir

View File

@@ -31,7 +31,8 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
- name: Install Deps
run: |

View File

@@ -21,7 +21,9 @@ jobs:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Download cargo cache
uses: Swatinem/rust-cache@v2
@@ -54,7 +56,7 @@ jobs:
- name: Tests
run: |
cd backends/concrete-cpu
cargo test --no-fail-fast --all-targets
cargo test --no-fail-fast --all-targets --features=nightly
- name: Zig install
run: |
@@ -75,7 +77,8 @@ jobs:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
- name: Download cargo cache
uses: Swatinem/rust-cache@v2

View File

@@ -66,7 +66,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
- name: Build compiler and ML benchmarks