Skip to content

Commit 54ada2e

Browse files
authored
Merge pull request #55 from nbigaouette/43-reactivate-win-target
Reactivate Windows (x86_64, msvc) target
2 parents 3b50b5b + 25d7c0e commit 54ada2e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/general.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,15 @@ jobs:
100100
os: [
101101
ubuntu-latest,
102102
macos-latest,
103-
# FIXME: Re-enable CI for Windows: https://github.com/nbigaouette/onnxruntime-rs/issues/43
104-
# windows-latest
103+
windows-latest
105104
]
106105
include:
107106
- os: ubuntu-latest
108107
target: x86_64-unknown-linux-gnu
109108
- os: macos-latest
110109
target: x86_64-apple-darwin
111-
# FIXME: Re-enable CI for Windows: https://github.com/nbigaouette/onnxruntime-rs/issues/43
112-
# - os: windows-latest
113-
# target: x86_64-pc-windows-msvc
110+
- os: windows-latest
111+
target: x86_64-pc-windows-msvc
114112
# - os: windows-latest
115113
# target: i686-pc-windows-msvc
116114
env:

onnxruntime/src/environment.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ mod tests {
294294
assert_eq!(G_ENV.env_ptr(), std::ptr::null_mut());
295295
}
296296

297+
#[ignore]
297298
#[test]
298299
fn sequential_environment_creation() {
299300
let _concurrent_run_lock_guard = CONCURRENT_TEST_RUN.single_test_run();

0 commit comments

Comments
 (0)