File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,21 @@ name: build-and-test-differential
2
2
3
3
on :
4
4
pull_request :
5
+ types :
6
+ - opened
7
+ - synchronize
8
+ - labeled
5
9
6
10
jobs :
11
+ prevent-no-label-execution :
12
+ uses : autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1
13
+ with :
14
+ label : tag:run-build-and-test-differential
15
+
7
16
build-and-test-differential :
8
- runs-on : ubuntu-latest
17
+ needs : prevent-no-label-execution
18
+ if : ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
19
+ runs-on : [self-hosted, linux, X64]
9
20
container : ${{ matrix.container }}${{ matrix.container-suffix }}
10
21
strategy :
11
22
fail-fast : false
65
76
run : df -h
66
77
67
78
clang-tidy-differential :
68
- runs-on : ubuntu-latest
79
+ runs-on : [self-hosted, linux, X64]
69
80
container : ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
70
81
needs : build-and-test-differential
71
82
steps :
You can’t perform that action at this time.
0 commit comments