diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b9f9dc5..47c00d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -100,14 +100,15 @@ jobs: manifest: ["psm/Cargo.toml", "Cargo.toml"] rust_target: - x86_64-pc-windows-msvc - - i686-pc-windows-msvc + # - i686-pc-windows-msvc include: - rust_target: x86_64-pc-windows-msvc clang_cl: C:/msys64/mingw64/bin/clang-cl.exe package: mingw-w64-x86_64-clang - - rust_target: i686-pc-windows-msvc - clang_cl: C:/msys64/mingw32/bin/clang-cl.exe - package: mingw-w64-i686-clang + # mingw has removed the relevant packages + # - rust_target: i686-pc-windows-msvc + # clang_cl: C:/msys64/mingw32/bin/clang-cl.exe + # package: mingw-w64-i686-clang steps: - uses: actions/checkout@v4 - uses: msys2/setup-msys2@v2 diff --git a/Cargo.toml b/Cargo.toml index acc2b00..af50af1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stacker" -version = "0.1.24" +version = "0.1.25" edition = "2021" rust-version = "1.63" authors = ["Alex Crichton ", "Simonas Kazlauskas "] diff --git a/build.rs b/build.rs index abaefe5..38e465f 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,5 @@ fn main() { cfg.define("WINDOWS", None); cfg.file("src/arch/windows.c"); cfg.include("src/arch").compile("libstacker.a"); - } else { - return; } } diff --git a/psm/Cargo.toml b/psm/Cargo.toml index f1ccc1b..0cd77e2 100644 --- a/psm/Cargo.toml +++ b/psm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psm" -version = "0.1.31" +version = "0.1.32" edition = "2021" rust-version = "1.88.0" authors = ["Simonas Kazlauskas "]