Skip to content

Gazebo: support Ionic #34

Gazebo: support Ionic

Gazebo: support Ionic #34

name: macOS Ventura CI
on: [pull_request]
jobs:
macos-ventura-ci:
runs-on: macos-13
name: macOS Ventura 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 venv /Users/runner/venv
source /Users/runner/venv/bin/activate
python3 -m pip install vcstool
python3 -m pip install colcon-common-extensions
- name: Build Wave Sim
run: |
source /Users/runner/venv/bin/activate
export GZ_VERSION=harmonic
bash ./.github/scripts/macos_build.sh
- name: Test Wave Sim
run: |
source /Users/runner/venv/bin/activate
export GZ_VERSION=harmonic
bash ./.github/scripts/macos_test.sh