Skip to content

Commit 9b4d7e4

Browse files
authored
revert: Revert "ci(build-and-test-differential): use github runner (#6278)" (#6306)
* Revert "ci(build-and-test-differential): remove prevent-no-label-execution (#6292)" This reverts commit 76cc954. * Revert "ci(build-and-test-differential): use github runner (#6278)" This reverts commit 0262c68.
1 parent 0d10e81 commit 9b4d7e4

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/build-and-test-differential.yaml

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,21 @@ name: build-and-test-differential
22

33
on:
44
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- labeled
59

610
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+
716
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]
920
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1021
strategy:
1122
fail-fast: false
@@ -65,7 +76,7 @@ jobs:
6576
run: df -h
6677

6778
clang-tidy-differential:
68-
runs-on: ubuntu-latest
79+
runs-on: [self-hosted, linux, X64]
6980
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
7081
needs: build-and-test-differential
7182
steps:

0 commit comments

Comments
 (0)