File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -209,8 +209,7 @@ jobs:
209
209
fail-fast : true
210
210
matrix :
211
211
include :
212
- - target : x86_64-pc-windows-gnu
213
- platform : windows_x86_64
212
+ - platform : windows_x86_64
214
213
steps :
215
214
- name : Checkout Code
216
215
uses : actions/checkout@v4
@@ -220,16 +219,15 @@ jobs:
220
219
uses : dtolnay/rust-toolchain@stable
221
220
with :
222
221
toolchain : stable
223
- targets : ${{ matrix.target }}
224
222
- name : Setup build directory
225
223
run : mkdir builds
226
224
- name : Build
227
225
run : |
228
- cargo build --release --target=${{ matrix.target }}
226
+ cargo build --release
229
227
- name : Copy
230
228
run : |
231
- cp target/${{ matrix.target }}/ release/viam_rust_utils.dll builds/libviam_rust_utils-${{ matrix.platform }}.dll
232
- cp target/${{ matrix.target }}/ release/libviam_rust_utils.a builds/libviam_rust_utils -${{ matrix.platform }}.lib
229
+ cp target/release/viam_rust_utils.dll builds/libviam_rust_utils-${{ matrix.platform }}.dll
230
+ cp target/release/viam_rust_utils.lib builds/viam_rust_utils -${{ matrix.platform }}.lib
233
231
- name : Upload artifacts
234
232
uses : actions/upload-artifact@v4
235
233
with :
You can’t perform that action at this time.
0 commit comments