-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to C++17 and ROOT 6.30.02 (#359)
Co-authored-by: Tobias Duswald <[email protected]> Co-authored-by: Ahmad Hesam <[email protected]>
- Loading branch information
1 parent
5bd40af
commit 675112f
Showing
45 changed files
with
293 additions
and
272 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
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 |
---|---|---|
|
@@ -14,38 +14,39 @@ jobs: | |
build: | ||
strategy: | ||
matrix: | ||
os: [macos-12, macos-13] | ||
os: [macos-12, macos-13, macos-14] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Make sure Xcode 14.1 is used on macOS 12 as the default /Application/Xcode.app | ||
- name: Make sure Xcode 14.2 is used on macOS 12 as the default /Application/Xcode.app | ||
shell: bash | ||
run: | | ||
sudo mv /Applications/Xcode.app /Applications/Xcode.app- | ||
sudo ln -s /Applications/Xcode_14.1.app /Applications/Xcode.app | ||
sudo ln -s /Applications/Xcode_14.2.app /Applications/Xcode.app | ||
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
if: matrix.os == 'macos-12' | ||
|
||
- name: Make sure Xcode 13.1 is used on macOS 11 as the default /Application/Xcode.app | ||
- name: Make sure Xcode 15.2 is used on macOS 13 as the default /Application/Xcode.app | ||
shell: bash | ||
run: | | ||
sudo mv /Applications/Xcode.app /Applications/Xcode.app- | ||
sudo ln -s /Applications/Xcode_13.1.app /Applications/Xcode.app | ||
sudo ln -s /Applications/Xcode_15.2.app /Applications/Xcode.app | ||
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
if: matrix.os == 'macos-11' | ||
if: matrix.os == 'macos-13' | ||
|
||
- name: Install dependencies | ||
run: | | ||
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 | ||
brew install libomp open-mpi [email protected] wget cmake ninja qt@5 libgit2 | ||
- name: Checkout BioDynaMo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# - name: Cache Third Party Packages | ||
# uses: actions/cache@v2 | ||
# uses: actions/cache@v4 | ||
# with: | ||
# path: build/third_party | ||
# key: ${{ runner.os }}-third-party-${{ hashFiles('cmake/external/SHA256Digests.cmake') }} | ||
|
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
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
Oops, something went wrong.