Skip to content

Commit f42864e

Browse files
committed
Fix the CI?
1 parent 8e925da commit f42864e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
rust_toolchain: [nightly, stable, 1.38.0]
20+
rust_toolchain: [nightly, stable, 1.56.0]
2121
os: [ubuntu-latest, windows-latest, macOS-latest]
2222
mode: ['--release', '-Zminimal-versions', '']
2323
manifest: ['psm/Cargo.toml', 'Cargo.toml']
2424
exclude:
2525
- rust_toolchain: stable
2626
mode: -Zminimal-versions
27-
- rust_toolchain: 1.38.0
27+
- rust_toolchain: 1.56.0
2828
mode: -Zminimal-versions
2929
timeout-minutes: 10
3030
steps:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stacker"
3-
version = "0.1.15"
3+
version = "0.1.16"
44
authors = ["Alex Crichton <[email protected]>", "Simonas Kazlauskas <[email protected]>"]
55
build = "build.rs"
66
license = "MIT OR Apache-2.0"

psm/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ fn find_assembly(
77
env: &str,
88
masm: bool,
99
) -> Option<(&'static str, bool)> {
10+
println!("cargo::rustc-check-cfg=cfg(switchable_stack,asm)");
1011
match (arch, endian, os, env) {
1112
// The implementations for stack switching exist, but, officially, doing so without Fibers
1213
// is not supported in Windows. For x86_64 the implementation actually works locally,

0 commit comments

Comments
 (0)