Skip to content

Commit

Permalink
Fix the CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Aug 21, 2024
1 parent 8e925da commit f42864e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_toolchain: [nightly, stable, 1.38.0]
rust_toolchain: [nightly, stable, 1.56.0]
os: [ubuntu-latest, windows-latest, macOS-latest]
mode: ['--release', '-Zminimal-versions', '']
manifest: ['psm/Cargo.toml', 'Cargo.toml']
exclude:
- rust_toolchain: stable
mode: -Zminimal-versions
- rust_toolchain: 1.38.0
- rust_toolchain: 1.56.0
mode: -Zminimal-versions
timeout-minutes: 10
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stacker"
version = "0.1.15"
version = "0.1.16"
authors = ["Alex Crichton <[email protected]>", "Simonas Kazlauskas <[email protected]>"]
build = "build.rs"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions psm/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ fn find_assembly(
env: &str,
masm: bool,
) -> Option<(&'static str, bool)> {
println!("cargo::rustc-check-cfg=cfg(switchable_stack,asm)");
match (arch, endian, os, env) {
// The implementations for stack switching exist, but, officially, doing so without Fibers
// is not supported in Windows. For x86_64 the implementation actually works locally,
Expand Down

0 comments on commit f42864e

Please sign in to comment.