forked from xsuite/xsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 1 KB
/
cron_test_gh.yaml
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
# This is a workflow that should run daily
name: Daily test (GitHub, CPU)
# Controls when the action will run.
on:
schedule:
- cron: '00 19 * * *' # run at 19:00 UTC daily
# This workflow calls the test_gh.yaml workflow passing the default
# branches as inputs
jobs:
run-tests-cron-gh:
uses: ./.github/workflows/test_gh.yaml
with:
xobjects_location: 'xsuite:main'
xdeps_location: 'xsuite:main'
xpart_location: 'xsuite:main'
xtrack_location: 'xsuite:main'
xfields_location: 'xsuite:main'
xmask_location: 'xsuite:main'
xcoll_location: 'xsuite:main'
run-tests-cron-gh-precompiled:
uses: ./.github/workflows/test_gh.yaml
with:
xobjects_location: 'xsuite:main'
xdeps_location: 'xsuite:main'
xpart_location: 'xsuite:main'
xtrack_location: 'xsuite:main'
xfields_location: 'xsuite:main'
xmask_location: 'xsuite:main'
xcoll_location: 'xsuite:main'
precompile_kernels: true
xobjects_test_contexts: "ContextCpu"