forked from celeritas-project/celeritas
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 890 Bytes
/
cron_weekly.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
name: cron_weekly
on:
schedule:
- cron: "33 06 * * 0" # Sunday at 6:33 am UTC
jobs:
clear-cache:
uses: ./.github/workflows/clear-cache.yml
build-fast:
if: github.repository == 'celeritas-project/celeritas'
needs: [clear-cache]
uses: ./.github/workflows/build-fast.yml
build-ultralite:
if: github.repository == 'celeritas-project/celeritas'
needs: [clear-cache]
uses: ./.github/workflows/build-ultralite.yml
build-spack:
if: github.repository == 'celeritas-project/celeritas'
needs: [clear-cache]
uses: ./.github/workflows/build-spack.yml
all:
if: ${{always()}}
needs:
- build-fast
- build-spack
- build-ultralite
runs-on: ubuntu-latest
steps:
- name: Check that all jobs succeeded
uses: re-actors/alls-green@release/v1
with:
jobs: ${{toJSON(needs)}}
# vim: set nowrap tw=100: