File tree Expand file tree Collapse file tree 1 file changed +11
-17
lines changed Expand file tree Collapse file tree 1 file changed +11
-17
lines changed Original file line number Diff line number Diff line change @@ -97,27 +97,21 @@ jobs:
9797 strategy :
9898 fail-fast : false
9999 matrix :
100- build :
101- - linux-gnu
102- - macos
103- - win-msvc
100+ os : [
101+ ubuntu-latest,
102+ macos-latest,
103+ # FIXME: Re-enable CI for Windows: https://github.com/nbigaouette/onnxruntime-rs/issues/43
104+ # windows-latest
105+ ]
104106 include :
105- - build : linux-gnu
106- os : ubuntu-latest
107- rust : stable
107+ - os : ubuntu-latest
108108 target : x86_64-unknown-linux-gnu
109- - build : macos
110- os : macOS-latest
111- rust : stable
109+ - os : macos-latest
112110 target : x86_64-apple-darwin
113111 # FIXME: Re-enable CI for Windows: https://github.com/nbigaouette/onnxruntime-rs/issues/43
114- # - build: win-msvc
115- # os: windows-2019
116- # rust: stable
112+ # - os: windows-latest
117113 # target: x86_64-pc-windows-msvc
118- # - build: win-msvc
119- # os: windows-2019
120- # rust: stable
114+ # - os: windows-latest
121115 # target: i686-pc-windows-msvc
122116 env :
123117 CARGO_BUILD_TARGET : ${{ matrix.target }}
@@ -127,7 +121,7 @@ jobs:
127121 uses : actions-rs/toolchain@v1
128122 with :
129123 profile : minimal
130- toolchain : ${{ matrix.rust }}
124+ toolchain : stable
131125 target : ${{ matrix.target }}
132126 override : true
133127 - name : Install additional packages (macOS)
You can’t perform that action at this time.
0 commit comments