Skip to content

Commit 9bc0a49

Browse files
authored
Merge pull request #54 from nbigaouette/53-test-job
Re-activate "test" job in CI
2 parents 54d4118 + e04e610 commit 9bc0a49

File tree

1 file changed

+11
-17
lines changed

1 file changed

+11
-17
lines changed

.github/workflows/general.yml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)