Nightly Build #883
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: Nightly Build | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 10 * * *" # 10:30AM UTC / 2:30AM PST / 3:30AM PDT | |
jobs: | |
build-rocky8-docker: | |
name: Build ChimeraX for Rocky 8 | |
uses: ./.github/workflows/rocky8_build.yml | |
with: | |
release_type: daily | |
secrets: inherit | |
build-rocky9-docker: | |
name: Build ChimeraX for Rocky 9 | |
needs: [build-rocky8-docker] | |
uses: ./.github/workflows/rocky9_build.yml | |
with: | |
release_type: daily | |
secrets: inherit | |
build-ubuntu: | |
name: Build ChimeraX for Ubuntu | |
needs: [build-rocky8-docker] | |
uses: ./.github/workflows/ubuntu_build.yml | |
with: | |
release_type: daily | |
secrets: inherit | |
build-flatpak: | |
name: Build ChimeraX FlatPak | |
needs: [build-rocky8-docker] | |
uses: ./.github/workflows/flatpak_build.yml | |
with: | |
release_type: daily | |
secrets: inherit | |
build-arm-macos: | |
name: Build ChimeraX for arm64 macOS | |
uses: ./.github/workflows/mac_arm_build.yml | |
with: | |
release_type: daily | |
secrets: inherit | |
build-intel-macos: | |
name: Build ChimeraX for Intel macOS | |
uses: ./.github/workflows/mac_intel_build.yml | |
with: | |
release_type: daily | |
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: | |
release_type: daily | |
secrets: inherit | |
build-windows: | |
name: Build ChimeraX for Windows | |
uses: ./.github/workflows/windows_build.yml | |
with: | |
release_type: daily | |
secrets: inherit |