nccopy has an out-of-app rpath; since we don't need it, exclude it fr… #7
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
name: Ambertools canary build | |
on: | |
push: | |
branches: [feature/ambertools] | |
jobs: | |
build-arm-macos: | |
name: Build ChimeraX for arm64 macOS | |
uses: ./.github/workflows/mac_arm_build.yml | |
with: | |
branch: feature/ambertools | |
release_type: canary | |
secrets: inherit | |
build-intel-macos: | |
name: Build ChimeraX for Intel macOS | |
uses: ./.github/workflows/mac_intel_build.yml | |
with: | |
branch: feature/ambertools | |
release_type: canary | |
secrets: inherit | |
build-mac-universal: | |
name: Build Universal ChimeraX for macOS | |
needs: [build-arm-macos, build-intel-macos] | |
uses: ./.github/workflows/mac_universal_build.yml | |
with: | |
branch: feature/ambertools | |
release_type: canary | |
secrets: inherit |