You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This job matrix builds the CUDA versions of the libraries for platforms that support CUDA (Linux x64/aarch64 + Windows x64)
114
+
# This job matrix builds the CUDA versions of the libraries for platforms that support CUDA (Windows)
114
115
##
115
116
build-shared-libs-cuda:
116
117
strategy:
117
118
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
118
119
fail-fast: false
119
120
120
121
matrix:
121
-
os: [ubuntu-latest, windows-latest]
122
-
arch: [x86_64, aarch64]
122
+
os: [windows-latest]
123
+
arch: [x86_64]
123
124
cuda-version: ['11.8.0', '12.1.1']
124
125
build_type: [Release]
125
-
exclude:
126
-
- os: windows-latest # This probably requires arm64 Windows agents
127
-
arch: aarch64
128
126
runs-on: ${{ matrix.os }} # One day, we could run them on native agents. Azure supports this now but it's planned only for Q3 2023 for hosted agents
# This job matrix builds the CUDA versions of the libraries for platforms that support CUDA (Linux x64/aarch64)
262
+
##
263
+
build-shared-libs-cuda-docker:
264
+
strategy:
265
+
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
266
+
fail-fast: false
267
+
268
+
matrix:
269
+
os: [ubuntu-latest]
270
+
arch: [x86_64, aarch64]
271
+
cuda-version: ['11.8.0', '12.1.1']
272
+
build_type: [Release]
273
+
exclude:
274
+
- os: windows-latest # This probably requires arm64 Windows agents
275
+
arch: aarch64
276
+
runs-on: ${{ matrix.os }} # One day, we could run them on native agents. Azure supports this now but it's planned only for Q3 2023 for hosted agents
0 commit comments