-
Notifications
You must be signed in to change notification settings - Fork 31
59 lines (58 loc) · 1.54 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Nightly Build
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * *" # 8AM UTC / 12AM PST / 1AM 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