-
Notifications
You must be signed in to change notification settings - Fork 40
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 with arm64 variants. - Remove --user installs. Signed-off-by: Rhys Mainwaring <rhys.mainwaring@me.com>
- Loading branch information
1 parent
d2ec631
commit 1f344bd
Showing
8 changed files
with
116 additions
and
71 deletions.
There are no files selected for viewing
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,27 @@ | ||
name: macOS Sonoma Build Tools (arm64) | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
macos-14-arm64-ci: | ||
runs-on: macos-14-arm64 | ||
name: macOS Sonoma Build Tools (arm64) | ||
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 | ||
export PATH=$PATH:/Users/runner/Library/Python/3.12/bin:/Users/runner/Library/Python/3.13/bin | ||
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,27 @@ | ||
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 | ||
export PATH=$PATH:/Users/runner/Library/Python/3.12/bin:/Users/runner/Library/Python/3.13/bin | ||
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,27 @@ | ||
name: macOS Sequoia Build Tools (arm64) | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
macos-15-arm64-ci: | ||
runs-on: macos-15-arm64 | ||
name: macOS Sequoia Build Tools (arm64) | ||
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 | ||
export PATH=$PATH:/Users/runner/Library/Python/3.12/bin:/Users/runner/Library/Python/3.13/bin | ||
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,27 @@ | ||
name: macOS Sequoia Build Tools | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
macos-15-ci: | ||
runs-on: macos-15 | ||
name: macOS Sequoia Build Tools (arm64) | ||
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 | ||
export PATH=$PATH:/Users/runner/Library/Python/3.12/bin:/Users/runner/Library/Python/3.13/bin | ||
colcon graph |