Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9fd4d35

Browse files
github-actionsgithub-actions[bot]
github-actions
authored andcommittedJun 14, 2024·
chore: sync files
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 00e12c4 commit 9fd4d35

14 files changed

+168
-17
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: build-and-test-daily-arm64
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-test-daily-arm64:
10+
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}
11+
runs-on: [self-hosted, linux, ARM64]
12+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
rosdistro:
17+
- humble
18+
container-suffix:
19+
- ""
20+
- -cuda
21+
include:
22+
- rosdistro: humble
23+
container: ghcr.io/autowarefoundation/autoware:humble-latest-prebuilt
24+
build-depends-repos: build_depends.repos
25+
steps:
26+
- name: Check out repository
27+
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 1
30+
31+
- name: Show disk space before the tasks
32+
run: df -h
33+
34+
- name: Remove exec_depend
35+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
36+
37+
- name: Get self packages
38+
id: get-self-packages
39+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
40+
41+
- name: Build
42+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
43+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
44+
with:
45+
rosdistro: ${{ matrix.rosdistro }}
46+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
47+
build-depends-repos: ${{ matrix.build-depends-repos }}
48+
49+
- name: Test
50+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
51+
id: test
52+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
53+
with:
54+
rosdistro: ${{ matrix.rosdistro }}
55+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
56+
build-depends-repos: ${{ matrix.build-depends-repos }}
57+
58+
- name: Upload coverage to CodeCov
59+
if: ${{ steps.test.outputs.coverage-report-files != '' }}
60+
uses: codecov/codecov-action@v4
61+
with:
62+
files: ${{ steps.test.outputs.coverage-report-files }}
63+
fail_ci_if_error: false
64+
verbose: true
65+
flags: total
66+
67+
- name: Show disk space after the tasks
68+
run: df -h
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: build-and-test-daily
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-test-daily:
10+
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}
11+
runs-on: [self-hosted, linux, X64]
12+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
rosdistro:
17+
- humble
18+
container-suffix:
19+
- ""
20+
- -cuda
21+
include:
22+
- rosdistro: humble
23+
container: ghcr.io/autowarefoundation/autoware:humble-latest-prebuilt
24+
build-depends-repos: build_depends.repos
25+
steps:
26+
- name: Check out repository
27+
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 1
30+
31+
- name: Show disk space before the tasks
32+
run: df -h
33+
34+
- name: Remove exec_depend
35+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
36+
37+
- name: Get self packages
38+
id: get-self-packages
39+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
40+
41+
- name: Build
42+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
43+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
44+
with:
45+
rosdistro: ${{ matrix.rosdistro }}
46+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
47+
build-depends-repos: ${{ matrix.build-depends-repos }}
48+
49+
- name: Test
50+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
51+
id: test
52+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
53+
with:
54+
rosdistro: ${{ matrix.rosdistro }}
55+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
56+
build-depends-repos: ${{ matrix.build-depends-repos }}
57+
58+
- name: Upload coverage to CodeCov
59+
if: ${{ steps.test.outputs.coverage-report-files != '' }}
60+
uses: codecov/codecov-action@v4
61+
with:
62+
files: ${{ steps.test.outputs.coverage-report-files }}
63+
fail_ci_if_error: false
64+
verbose: true
65+
flags: total
66+
67+
- name: Show disk space after the tasks
68+
run: df -h

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: build-and-test
22

33
on:
44
push:
5-
schedule:
6-
- cron: 0 0 * * *
75
workflow_dispatch:
86

97
jobs:
@@ -17,15 +15,16 @@ jobs:
1715
rosdistro:
1816
- humble
1917
container-suffix:
20-
- ""
2118
- -cuda
2219
include:
2320
- rosdistro: humble
24-
container: ghcr.io/autowarefoundation/autoware:latest-prebuilt
21+
container: ghcr.io/autowarefoundation/autoware:humble-latest-prebuilt
2522
build-depends-repos: build_depends.repos
2623
steps:
2724
- name: Check out repository
2825
uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 1
2928

3029
- name: Show disk space before the tasks
3130
run: df -h
@@ -56,7 +55,7 @@ jobs:
5655

5756
- name: Upload coverage to CodeCov
5857
if: ${{ steps.test.outputs.coverage-report-files != '' }}
59-
uses: codecov/codecov-action@v3
58+
uses: codecov/codecov-action@v4
6059
with:
6160
files: ${{ steps.test.outputs.coverage-report-files }}
6261
fail_ci_if_error: false

‎.github/workflows/cancel-previous-workflows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Cancel previous runs
11-
uses: styfle/cancel-workflow-action@0.12.0
11+
uses: styfle/cancel-workflow-action@0.12.1
1212
with:
1313
workflow_id: all
1414
all_but_latest: true

‎.github/workflows/check-build-depends.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
build-depends-repos: build_depends.repos
2121
steps:
2222
- name: Check out repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v3
2424

2525
- name: Remove exec_depend
2626
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1

‎.github/workflows/clang-tidy-pr-comments-manually.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v3
1515

1616
- name: Download analysis results
1717
run: |
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Check out PR head
3838
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v3
4040
with:
4141
repository: ${{ steps.set-variables.outputs.pr-head-repo }}
4242
ref: ${{ steps.set-variables.outputs.pr-head-ref }}

‎.github/workflows/clang-tidy-pr-comments.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v3
1717

1818
- name: Download analysis results
1919
run: |
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Check out PR head
3939
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v3
4141
with:
4242
repository: ${{ steps.set-variables.outputs.pr-head-repo }}
4343
ref: ${{ steps.set-variables.outputs.pr-head-ref }}

‎.github/workflows/delete-closed-pr-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616

‎.github/workflows/deploy-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Check out repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 0
3636
ref: ${{ github.event.pull_request.head.sha }}

‎.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: Generate token
1212
id: generate-token
13-
uses: tibdex/github-app-token@v1
13+
uses: tibdex/github-app-token@v2
1414
with:
1515
app_id: ${{ secrets.APP_ID }}
1616
private_key: ${{ secrets.PRIVATE_KEY }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: spell-check-differential
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
spell-check-differential:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out repository
11+
uses: actions/checkout@v4
12+
13+
- name: Run spell-check
14+
uses: autowarefoundation/autoware-github-actions/spell-check@v1
15+
with:
16+
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json

‎.github/workflows/sync-files.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Generate token
2020
id: generate-token
21-
uses: tibdex/github-app-token@v1
21+
uses: tibdex/github-app-token@v2
2222
with:
2323
app_id: ${{ secrets.APP_ID }}
2424
private_key: ${{ secrets.PRIVATE_KEY }}

‎.github/workflows/update-codeowners-from-packages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Generate token
2020
id: generate-token
21-
uses: tibdex/github-app-token@v1
21+
uses: tibdex/github-app-token@v2
2222
with:
2323
app_id: ${{ secrets.APP_ID }}
2424
private_key: ${{ secrets.PRIVATE_KEY }}

‎.pre-commit-config-optional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/tcort/markdown-link-check
3-
rev: v3.11.2
3+
rev: v3.12.2
44
hooks:
55
- id: markdown-link-check
66
args: [--quiet, --config=.markdown-link-check.json]

0 commit comments

Comments
 (0)
Please sign in to comment.