Prevent duplicate textures being loaded in displacement map #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |