Skip to content

Commit e146518

Browse files
committed
Undo nightly on rs port.
1 parent febf673 commit e146518

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/release-rust.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ concurrency:
1515

1616
env:
1717
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
18-
RUST_BACKTRACE: "full"
19-
RUSTFLAGS: "-Zsanitize=address"
2018

2119
jobs:
2220
test:
@@ -41,19 +39,18 @@ jobs:
4139
- name: Install Rust
4240
uses: actions-rs/toolchain@v1
4341
with:
44-
toolchain: nightly
42+
toolchain: stable
4543
override: true
4644

4745
- name: Build the Rust Port
4846
working-directory: source/ports/rs_port
49-
run: |
50-
rustup default nightly
51-
cargo build --verbose
47+
run: cargo build --verbose
5248

5349
- name: Test the Rust Port
5450
working-directory: source/ports/rs_port
55-
run: cargo +nightly test --verbose
56-
# run: cargo test --verbose
51+
env:
52+
RUST_BACKTRACE: full
53+
run: cargo test --verbose
5754

5855
release:
5956
name: Release Rust Port

0 commit comments

Comments
 (0)