From 7bded13d1b478ecb810f18aa97f477e153cb8f82 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 10 Mar 2022 22:23:42 +0900 Subject: [PATCH 1/2] Disable incremental compilation to fix CI failure --- .github/workflows/rust.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4d335939..e5c23951 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,6 +8,7 @@ on: pull_request: env: + CARGO_INCREMENTAL: 0 RUST_TEST_THREADS: 1 jobs: @@ -18,7 +19,7 @@ jobs: os: [ubuntu, macos, windows] channel: [1.49.0, stable, beta, nightly] feature: [arc_lock, serde, deadlock_detection] - exclude: + exclude: - feature: deadlock_detection channel: '1.49.0' include: @@ -41,7 +42,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: + target: - wasm32-unknown-unknown - x86_64-fortanix-unknown-sgx #- x86_64-unknown-redox From 99ab9803e3c22d4b7dad0820fdfdc2afc4b70a4e Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 10 Mar 2022 21:55:18 +0900 Subject: [PATCH 2/2] Update windows-sys to 0.33, petgraph to 0.6 --- core/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 7c3cf7bd..254e4523 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] cfg-if = "1.0.0" smallvec = "1.6.1" -petgraph = { version = "0.5.1", optional = true } +petgraph = { version = "0.6.0", optional = true } thread-id = { version = "4.0.0", optional = true } backtrace = { version = "0.3.60", optional = true } @@ -23,7 +23,7 @@ libc = "0.2.95" redox_syscall = "0.2.8" [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.32", features = [ +windows-sys = { version = "0.33.0", features = [ "Win32_Foundation", "Win32_System_LibraryLoader", "Win32_System_SystemServices",