Skip to content

Commit a0240ed

Browse files
committed
added a daily workflow that runs on the devcloud
1 parent e88b9d5 commit a0240ed

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/daily.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-FileCopyrightText: Intel Corporation
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
5+
name: Daily
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
pull_request:
13+
workflow_dispatch:
14+
# 8am UTC is 12am PST, 1am PDT
15+
schedule:
16+
- cron: '0 8 * * *'
17+
18+
jobs:
19+
checks:
20+
runs-on: devcloud
21+
env:
22+
CXX: icpx
23+
CC: icx
24+
steps:
25+
- uses: actions/checkout@v4
26+
- name: Build & Run
27+
run: srun -p pvc-shared -w idc-beta-batch-pvc-node-12 scripts/daily.sh

scripts/daily.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)