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 670f070

Browse files
authoredFeb 6, 2024··
Merge branch 'main' into feat/add_lidar_marker_localizer
2 parents 1f4c684 + be5663c commit 670f070

File tree

218 files changed

+14121
-1392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+14121
-1392
lines changed
 

‎.github/CODEOWNERS

+24-21
Large diffs are not rendered by default.

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build-and-test-differential:
1717
needs: prevent-no-label-execution
1818
if: ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
19-
runs-on: ubuntu-latest
19+
runs-on: [self-hosted, linux, X64]
2020
container: ${{ matrix.container }}${{ matrix.container-suffix }}
2121
strategy:
2222
fail-fast: false
@@ -36,6 +36,9 @@ jobs:
3636
with:
3737
fetch-depth: 0
3838

39+
- name: Check disk space before build
40+
run: df -h
41+
3942
- name: Remove exec_depend
4043
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
4144

@@ -69,8 +72,11 @@ jobs:
6972
verbose: true
7073
flags: differential
7174

75+
- name: Check disk space after build
76+
run: df -h
77+
7278
clang-tidy-differential:
73-
runs-on: ubuntu-latest
79+
runs-on: [self-hosted, linux, X64]
7480
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
7581
needs: build-and-test-differential
7682
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.