forked from autowarefoundation/autoware
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.2 KB
/
build-main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: build-main
on:
schedule:
- cron: 0 12 * * *
workflow_dispatch:
jobs:
load-env:
uses: ./.github/workflows/load-env.yaml
build-main:
needs: load-env
runs-on: ubuntu-latest
container: ${{ needs.load-env.outputs.base-image }}
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Run setup script
run: |
./setup-dev-env.sh -y
- name: Set git config
uses: autowarefoundation/autoware-github-actions/set-git-config@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run vcs import
run: |
mkdir src
vcs import src < autoware.repos
- name: Run vcs export
run: |
vcs export --exact src || true
- name: Run rosdep install
run: |
sudo apt-get -y update
rosdep update
DEBIAN_FRONTEND=noninteractive rosdep install -y --from-paths src --ignore-src --rosdistro ${{ needs.load-env.outputs.rosdistro }}
- name: Build
run: |
. /opt/ros/${{ needs.load-env.outputs.rosdistro }}/setup.sh
colcon build --event-handlers console_cohesion+ --cmake-args -DCMAKE_BUILD_TYPE=Release