File tree Expand file tree Collapse file tree 5 files changed +26
-6
lines changed Expand file tree Collapse file tree 5 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ name: Clippy Test
3
3
on :
4
4
push :
5
5
# Ignore bors branches, since they are covered by `clippy_bors.yml`
6
- branches-ignore : [auto, try]
6
+ branches-ignore :
7
+ - auto
8
+ - try
7
9
# Don't run Clippy tests, when only textfiles were modified
8
10
paths-ignore :
9
11
- ' COPYRIGHT'
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ name: Clippy Test (bors)
2
2
3
3
on :
4
4
push :
5
- branches : [auto, try]
5
+ branches :
6
+ - auto
7
+ - try
6
8
7
9
env :
8
10
RUST_BACKTRACE : 1
@@ -200,6 +202,11 @@ jobs:
200
202
run : bash setup-toolchain.sh
201
203
202
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
+
203
210
- name : Build Integration Test
204
211
run : cargo test --test integration --features integration --no-run
205
212
@@ -289,6 +296,11 @@ jobs:
289
296
run : chmod +x $CARGO_TARGET_DIR/debug/*
290
297
291
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
+
292
304
- name : Test ${{ matrix.integration }}
293
305
run : $CARGO_TARGET_DIR/debug/integration
294
306
env :
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ name: Clippy Dev Test
2
2
3
3
on :
4
4
push :
5
- branches : [auto, try]
5
+ branches :
6
+ - auto
7
+ - try
6
8
pull_request :
7
9
# Only run on paths, that get checked by the clippy_dev tool
8
10
paths :
Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ name: Deploy
2
2
3
3
on :
4
4
push :
5
- branches : master
5
+ branches :
6
+ - master
6
7
release :
7
- types : [created]
8
+ types :
9
+ - created
8
10
9
11
env :
10
12
TARGET_BRANCH : ' gh-pages'
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ name: Remark
2
2
3
3
on :
4
4
push :
5
- branches : [auto, try]
5
+ branches :
6
+ - auto
7
+ - try
6
8
pull_request :
7
9
paths :
8
10
- ' **.md'
You can’t perform that action at this time.
0 commit comments