-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove macOS-12 build. - Add builds for macOS-14 and macOS-15. - Use Python virtual environment. - Remove --user installs. - Update to Gazebo Harmonic - Install libboost-iostreams-dev - Install libboost-filesystem-dev Signed-off-by: Rhys Mainwaring <rhys.mainwaring@me.com>
- Loading branch information
1 parent
d2ec631
commit 80abdee
Showing
10 changed files
with
75 additions
and
86 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ brew tap osrf/simulation | |
|
||
# packages to install | ||
PKGS=( | ||
gz-garden | ||
gz-harmonic | ||
cgal | ||
fftw | ||
) | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
#!/bin/bash | ||
|
||
# Python scripts installed with: `pip3 install --user <package>` | ||
export PATH=$PATH:$HOME/Library/Python/3.11/bin:$HOME/Library/Python/3.12/bin | ||
|
||
export GZ_VERSION=harmonic | ||
colcon test --merge-install | ||
colcon test-result --all --verbose |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: macOS Sonoma Build Tools | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
macos-14-ci: | ||
runs-on: macos-14 | ||
name: macOS Sonoma Build Tools | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- 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: Check Build Tools | ||
run: | | ||
source /Users/runner/venv/bin/activate | ||
which pip3 | ||
which python3 | ||
python3 --version | ||
colcon graph |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: macOS Sequoia Build Tools | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
macos-15-ci: | ||
runs-on: macos-15 | ||
name: macOS Sequoia Build Tools | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- 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: Check Build Tools | ||
run: | | ||
source /Users/runner/venv/bin/activate | ||
which pip3 | ||
which python3 | ||
python3 --version | ||
colcon graph |
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