Skip to content

Commit bea0470

Browse files
add autobuild on delta
1 parent 606459e commit bea0470

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/autobuild.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Autobuild
2+
3+
on:
4+
schedule:
5+
- cron: '01 06 * * *' # UTC 6:01am, corresponds to 00:01 CST or 01:01 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

Comments
 (0)