File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -202,6 +202,11 @@ jobs:
202
202
run : bash setup-toolchain.sh
203
203
204
204
# Run
205
+ - name : Set LD_LIBRARY_PATH (Linux)
206
+ run : |
207
+ SYSROOT=$(rustc --print sysroot)
208
+ echo "::set-env name=LD_LIBRARY_PATH::${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}"
209
+
205
210
- name : Build Integration Test
206
211
run : cargo test --test integration --features integration --no-run
207
212
@@ -291,6 +296,11 @@ jobs:
291
296
run : chmod +x $CARGO_TARGET_DIR/debug/*
292
297
293
298
# Run
299
+ - name : Set LD_LIBRARY_PATH (Linux)
300
+ run : |
301
+ SYSROOT=$(rustc --print sysroot)
302
+ echo "::set-env name=LD_LIBRARY_PATH::${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}"
303
+
294
304
- name : Test ${{ matrix.integration }}
295
305
run : $CARGO_TARGET_DIR/debug/integration
296
306
env :
You can’t perform that action at this time.
0 commit comments