File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ concurrency:
1515
1616env :
1717 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
18- RUST_BACKTRACE : " full"
19- RUSTFLAGS : " -Zsanitize=address"
2018
2119jobs :
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
You can’t perform that action at this time.
0 commit comments