diff --git a/.github/workflows/server-cicd.yml b/.github/workflows/server-cicd.yml index 147f665fb..bc766ca46 100644 --- a/.github/workflows/server-cicd.yml +++ b/.github/workflows/server-cicd.yml @@ -17,8 +17,8 @@ jobs: - name: Setup | Rust uses: actions-rust-lang/setup-rust-toolchain@v1.9.0 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