-
Notifications
You must be signed in to change notification settings - Fork 35
42 lines (35 loc) · 1.05 KB
/
macos12-monterey-ci.yml
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
name: macOS Monterey CI
on: [pull_request]
jobs:
macos-monterey-ci:
runs-on: macos-12
name: macOS Monterey CI
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache brew packages
id: cache-brew-packages
uses: actions/cache@v3
with:
path: |
/usr/local/Cellar
/usr/local/Frameworks
/usr/local/Homebrew
/usr/local/bin
/usr/local/lib
/usr/local/opt
/usr/local/share
key: macos-build-cache-${{ hashFiles('./.github/scripts/brew_install_deps.sh') }}
- name: Install brew packages
run: |
bash ./.github/scripts/brew_install_deps.sh
- name: Install Build Tools
run: |
python3 -m pip install --user vcstool
python3 -m pip install --user colcon-common-extensions
- name: Build Wave Sim
run: |
bash ./.github/scripts/macos_build.sh
- name: Test Wave Sim
run: |
bash ./.github/scripts/macos_test.sh