We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606459e commit a9ad79cCopy full SHA for a9ad79c
.github/workflows/autobuild.yml
@@ -0,0 +1,23 @@
1
+name: Autobuild
2
+
3
+on:
4
+ schedule:
5
+ - cron: '15 06 * * *' # UTC 6:15am, corresponds to 00:15 CST or 01:15 CDT
6
7
+jobs:
8
+ Delta:
9
+ timeout-minutes: 60
10
11
+ runs-on: delta
12
+ name: Delta
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ with:
17
+ ref: autobuild
18
+ - name: build
19
+ run: |
20
+ echo "Running autobuild on delta"
21
+ hostname
22
+ uname -a
23
+ lsb_release -a
0 commit comments