-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/profile-grids' of ssh://localhost:14147/Users/p…
…ett/src/chimerax into feature/profile-grids
- Loading branch information
Showing
64 changed files
with
414 additions
and
525 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 |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
uses: Homebrew/actions/setup-homebrew@master | ||
- run: | | ||
brew install [email protected] | ||
python3.10 -m pip install lief==0.12.2 dmgbuild | ||
python3.10 -m pip install lief dmgbuild | ||
patch --ignore-whitespace -d /opt/homebrew/lib/python3.10/site-packages/dmgbuild -N -p0 < ./utils/build/macos/dmgbuild.patch | ||
- uses: actions/checkout@v4 | ||
- run: ${PWD}/utils/set_up_macos.sh | ||
|
@@ -52,6 +52,18 @@ jobs: | |
platform: macos | ||
architecture: arm64 | ||
cache_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
- uses: Tiryoh/gha-jobid-action@v1 | ||
id: get_job_id | ||
with: | ||
job_name: "Build ChimeraX for arm64 macOS / build-arm-macos" | ||
- name: Note the run and job IDs on Plato | ||
uses: ./utils/ci/nightly_logs | ||
with: | ||
platform: mac_arm64 | ||
deploy_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
run_id: ${{ github.run_id }} | ||
job_id: ${{ steps.get_job_id.outputs.job_id }} | ||
build_type: daily | ||
- run: MAKEOPTS="-j$(sysctl -n hw.logicalcpu)" make -j$(sysctl -n hw.logicalcpu) install-rbvi | ||
- name: Run the legacy test suite | ||
run: make test | ||
|
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 |
---|---|---|
|
@@ -28,6 +28,9 @@ on: | |
MAC_NOTARIZATION_EMAIL: | ||
required: true | ||
|
||
env: | ||
MACOSX_DEPLOYMENT_TARGET: 11 | ||
|
||
jobs: | ||
build-intel-macos: | ||
name: Build ChimeraX for Intel Macs | ||
|
@@ -41,7 +44,7 @@ jobs: | |
uses: Homebrew/actions/setup-homebrew@master | ||
- run: | | ||
brew install [email protected] | ||
python3.10 -m pip install lief==0.12.2 dmgbuild | ||
python3.10 -m pip install lief dmgbuild | ||
patch --ignore-whitespace -d /usr/local/lib/python3.10/site-packages/dmgbuild -N -p0 < ./utils/build/macos/dmgbuild.patch | ||
# Temporarily force this to succeed. The container's Python conflicts with homebrew's, | ||
# but we don't really use it anyway. | ||
|
@@ -52,6 +55,18 @@ jobs: | |
platform: macos | ||
architecture: x86_64 | ||
cache_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
- uses: Tiryoh/gha-jobid-action@v1 | ||
id: get_job_id | ||
with: | ||
job_name: "Build ChimeraX for Intel macOS / Build ChimeraX for Intel Macs" | ||
- name: Note the run and job IDs on Plato | ||
uses: ./utils/ci/nightly_logs | ||
with: | ||
platform: macosx | ||
deploy_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
run_id: ${{ github.run_id }} | ||
job_id: ${{ steps.get_job_id.outputs.job_id }} | ||
build_type: daily | ||
- run: MAKEOPTS="-j$(sysctl -n hw.logicalcpu)" make -j$(sysctl -n hw.logicalcpu) install-rbvi | ||
- name: Run the legacy test suite | ||
run: make test | ||
|
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 |
---|---|---|
|
@@ -39,10 +39,22 @@ jobs: | |
run: | | ||
brew install [email protected] | ||
python3.10 -m pip install setuptools==54.0 | ||
python3.10 -m pip install lief==0.12.2 | ||
python3.10 -m pip install lief | ||
python3.10 -m pip install dmgbuild | ||
# Make dmgbuild allocate an adult sized DMG | ||
patch --ignore-whitespace -d /opt/homebrew/lib/python3.10/site-packages/dmgbuild -N -p0 < ./utils/build/macos/dmgbuild.patch | ||
- uses: Tiryoh/gha-jobid-action@v1 | ||
id: get_job_id | ||
with: | ||
job_name: "Build Universal ChimeraX for macOS / build-mac-universal" | ||
- name: Note the run and job IDs on Plato | ||
uses: ./utils/ci/nightly_logs | ||
with: | ||
platform: mac_universal | ||
deploy_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
run_id: ${{ github.run_id }} | ||
job_id: ${{ steps.get_job_id.outputs.job_id }} | ||
build_type: daily | ||
- uses: ./utils/ci/download_mac_chimerax | ||
with: | ||
cache_key: ${{ secrets.PREBUILT_CACHE_SECRET }} | ||
|
@@ -60,6 +72,11 @@ jobs: | |
- name: Make the universal build | ||
run: | | ||
python3.10 ./utils/build/macos/make_universal.py chimerax_arm64.app chimerax_intel.app ChimeraX.app 2>&1 | ||
# Local machines keep the executable bits on these files. Runner machines for whatever reason do not. | ||
# Perhaps they are quarantined? al2co doesn't have this problem? | ||
- name: Make ambertools executable | ||
run: | | ||
chmod +x ChimeraX.app/Contents/bin/amber*/bin/* | ||
- name: Remove unneeded ChimeraXes | ||
run: | | ||
rm -r chimerax_arm64.app | ||
|
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
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.