-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "tested if switching the tests to
cranelift
does improve the…
… slooow compile times" This reverts commit 975fec2.
- Loading branch information
1 parent
975fec2
commit af1560f
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,8 @@ jobs: | |
- name: Setup | Rust | ||
uses: actions-rust-lang/[email protected] | ||
with: | ||
toolchain: nightly | ||
components: rustc-codegen-cranelift-preview | ||
toolchain: stable | ||
components: clippy | ||
cache: false | ||
- name: Setup | Rust-Cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
@@ -29,11 +29,11 @@ jobs: | |
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
- run: CARGO_PROFILE_DEV_CODEGEN_BACKEND=cranelift cargo +nightly test --no-run --locked -Zcodegen-backend | ||
- run: cargo test --no-run --locked | ||
working-directory: server | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
- run: CARGO_PROFILE_DEV_CODEGEN_BACKEND=cranelift cargo +nightly test -Zcodegen-backend -- --nocapture --quiet | ||
- run: cargo test -- --nocapture --quiet | ||
working-directory: server | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
|