-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
36 additions
and
20 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
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 |
---|---|---|
|
@@ -82,7 +82,7 @@ jobs: | |
name: Check C++ code formatting | ||
needs: check_changes | ||
if: needs.check_changes.outputs.tket_or_workflow_changed == 'true' | ||
runs-on: 'macos-14' | ||
runs-on: 'macos-15' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check C++ code formatting | ||
|
@@ -98,7 +98,7 @@ jobs: | |
if: needs.check_changes.outputs.tket_or_workflow_changed == 'true' | ||
strategy: | ||
matrix: | ||
os: ['ubuntu-24.04', 'macos-12', 'macos-14'] | ||
os: ['ubuntu-24.04', 'macos-13', 'macos-15'] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -342,7 +342,7 @@ jobs: | |
if: needs.check_changes.outputs.tket_or_workflow_changed == 'true' || needs.check_changes.outputs.pytket_or_workflow_changed == 'true' | ||
strategy: | ||
matrix: | ||
os: ['macos-12', 'macos-14'] | ||
os: ['macos-13', 'macos-15'] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -363,7 +363,7 @@ jobs: | |
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: tket-dynamic-macos-12 | ||
key: tket-dynamic-macos | ||
- name: further ccache config | ||
run: | | ||
ccache --set-config base_dir=${HOME} | ||
|
@@ -416,7 +416,7 @@ jobs: | |
python -m pip install -r requirements.txt | ||
python -m pytest --ignore=simulator/ | ||
- name: Check type stubs are up-to-date and run mypy | ||
if: matrix.os == 'macos-14' && (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch') | ||
if: matrix.os == 'macos-15' && (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch') | ||
run: | | ||
python -m pip install -U mypy pybind11-stubgen | ||
cd pytket | ||
|
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
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
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,8 @@ | ||
[settings] | ||
arch=x86_64 | ||
build_type=Release | ||
compiler=apple-clang | ||
compiler.cppstd=gnu17 | ||
compiler.libcxx=libc++ | ||
compiler.version=15 | ||
os=Macos |
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,8 @@ | ||
[settings] | ||
arch=armv8 | ||
build_type=Release | ||
compiler=apple-clang | ||
compiler.cppstd=gnu17 | ||
compiler.libcxx=libc++ | ||
compiler.version=16 | ||
os=Macos |
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