Skip to content

Commit 6d279ef

Browse files
Alan-eMartinbrownj85anthayes92doctorperceptron
authored
SC-85410 | V2 demos build on schedule (#1358)
## Summary: Workflows added to build the `master` and `dev` branch on a bi-daily basis (every two days). Please note, we will need to check out the `dev` version of the workflow once this change is merged to `dev` As seen here: [from `./workflows/v2-build-demos.yml` -> `./workflows/v2-build-demos.yml@dev`](https://github.com/PennyLaneAI/qml/pull/1358/files#diff-a7089c8b0db3e46f54708ff72c7fb0c2579efcc28c0a9f5d5ec0071ca99df091R135) --------- Co-authored-by: Jack Brown <[email protected]> Co-authored-by: Jack Brown <[email protected]> Co-authored-by: anthayes92 <[email protected]> Co-authored-by: Paul Finlay <[email protected]> Co-authored-by: doctorperceptron <[email protected]>
1 parent 6f8e113 commit 6d279ef

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: V2 Build QML Branch - Dev
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 0 * * 0,2,4,6' # At 00:00 on Sunday, Tuesday, Thursday, and Saturday.
6+
7+
concurrency:
8+
group: build-qml-demo-branch-dev
9+
cancel-in-progress: true
10+
11+
jobs:
12+
build_dev:
13+
uses: ./.github/workflows/v2-build-demos.yml
14+
with:
15+
ref: dev
16+
dev: true
17+
save-artifact: true
18+
artifact-name: build-branch-dev
19+
keep-going: false
20+
quiet: false
21+
batch_size: 10
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: V2 Build QML Branch - Master
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 0 * * 0,2,4,6' # At 00:00 on Sunday, Tuesday, Thursday, and Saturday.
6+
7+
concurrency:
8+
group: build-qml-demo-branch-master
9+
cancel-in-progress: true
10+
11+
jobs:
12+
build_master:
13+
uses: ./.github/workflows/v2-build-demos.yml
14+
with:
15+
ref: master
16+
dev: false
17+
save-artifact: true
18+
artifact-name: build-branch-master
19+
keep-going: false
20+
quiet: false
21+
batch_size: 10

0 commit comments

Comments
 (0)