Skip to content

Commit 52f2993

Browse files
Pin rust toolchain to work around Windows regression (#14406)
This PR works around a current regression in the Rust toolchain that caused our Windows workers to start failing with: ``` Finished `test` profile [unoptimized + debuginfo] target(s) in 32.63s Running unittests src\lib.rs (target\debug\deps\tailwind_oxide-ce6a5d43a3798437.exe) Load Node-API [napi_get_last_error_info] from host runtime failed: GetProcAddress failed fatal runtime error: thread::set_current should only be called once per thread Load Node-API [napi_get_uv_event_loop] from host runtime failed: GetProcAddress failed Load Node-API [napi_fatal_exception] from host runtime failed: GetProcAddress failed Load Node-API [napi_create_threadsafe_function] from host runtime failed: GetProcAddress failed error: test failed, to rerun pass `-p tailwind-oxide --lib` ``` The workaround is to pin the rust toolchain version so that the regression isn't applied when we build on Windows in test mode.
1 parent 7244f27 commit 52f2993

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

rust-toolchain.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[toolchain]
2+
channel = "1.80.1"
3+
profile = "default"

0 commit comments

Comments
 (0)