-
Notifications
You must be signed in to change notification settings - Fork 209
SC-85410 | V2 demos build on schedule #1358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
b57ba0f
4dc5233
b2e3edb
bb76dae
22acefc
326e586
5fcda7f
fb46d78
6b19a63
bea7530
c51c68e
e768e21
ceea64f
39d96d3
8441b41
c54066c
7aecbae
1fc423e
60e982e
424b4b0
70797e2
00f517c
36d8ec1
8b828ce
8d1e3ec
0aded43
a505b55
dd0347a
f4c2367
1e86b65
03363b4
bbd53cd
20e7135
b4c1e66
2212966
cf7a5ce
00c4454
5fa842e
9d137e1
e79f85b
53f52d1
7880301
55a29b0
53be132
8f0b2d9
111fb92
8c24d01
98c63f8
d1ac538
a8b5ec3
8ba91a3
b4d200d
17a8899
3ecf175
d86d97a
9b19a4d
6dfd10a
5a7aab3
b8a6dcc
2586336
756309c
2c42e58
76df2c8
3ff2753
8f95123
420a1ca
86f7789
35a4477
51f52d2
032be6e
3e86fe1
0ab9b4b
3ec262b
98ff9b5
12ae7a1
09b0ec3
75b35d3
aedec50
f070f6e
83816a6
46e01cf
754f6f8
5bc3948
1c1c3e9
d45d0b5
fa103d3
88eedbf
0788637
64b64e3
8d59318
15d6872
5977c96
a801646
a72fde0
79a5b13
3931fe9
c0d7d49
afcd7aa
f082f6e
32ea6f5
3d4c57f
9bd0d17
ea8ad7f
c3292b7
5524d02
574ff4a
a19d1cb
204f013
995a650
11b0b34
9a6ab6f
adea110
65bc574
b63e7bf
9238e66
b969e3d
a25722a
f8c869a
cd7099e
78b6669
a775a1d
a6d6a05
19c659c
7fcd6fb
75f3f2c
06da7c7
3dd017d
2a4cd72
8be6597
a9db0be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,21 @@ | |||||||||||||||||
name: V2 Build QML Branch - Dev | |||||||||||||||||
on: | |||||||||||||||||
workflow_dispatch: | |||||||||||||||||
schedule: | |||||||||||||||||
- cron: '0 0 * * 0,2,4,6' # At 00:00 on Sunday, Tuesday, Thursday, and Saturday. | |||||||||||||||||
|
|||||||||||||||||
concurrency: | |||||||||||||||||
group: build-qml-demo-branch-dev | |||||||||||||||||
cancel-in-progress: true | |||||||||||||||||
|
|||||||||||||||||
jobs: | |||||||||||||||||
build_dev: | |||||||||||||||||
uses: ./.github/workflows/v2-build-demos.yml | |||||||||||||||||
with: | |||||||||||||||||
ref: build-branch-dev | |||||||||||||||||
dev: true | |||||||||||||||||
save-artifact: true | |||||||||||||||||
artifact-name: build-branch-dev | |||||||||||||||||
keep-going: false | |||||||||||||||||
quiet: false | |||||||||||||||||
batch_size: 10 | |||||||||||||||||
Comment on lines
+13
to
+21
Check warningCode scanning / CodeQL Workflow does not contain permissions Medium
Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Copilot AutofixAI 4 days ago To fix the issue, we will add a
Suggested changeset
1
.github/workflows/v2-build-branch-dev.yml
Copilot is powered by AI and may make mistakes. Always verify output.
Positive FeedbackNegative Feedback
Refresh and try again.
|
Original file line number | Diff line number | Diff line change | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,21 @@ | |||||||||||||||||
name: V2 Build QML Branch - Master | |||||||||||||||||
on: | |||||||||||||||||
workflow_dispatch: | |||||||||||||||||
schedule: | |||||||||||||||||
- cron: '0 0 * * 0,2,4,6' # At 00:00 on Sunday, Tuesday, Thursday, and Saturday. | |||||||||||||||||
|
|||||||||||||||||
concurrency: | |||||||||||||||||
group: build-qml-demo-branch-master | |||||||||||||||||
cancel-in-progress: true | |||||||||||||||||
|
|||||||||||||||||
jobs: | |||||||||||||||||
build_master: | |||||||||||||||||
uses: ./.github/workflows/v2-build-demos.yml | |||||||||||||||||
with: | |||||||||||||||||
ref: build-branch-master | |||||||||||||||||
dev: false | |||||||||||||||||
save-artifact: true | |||||||||||||||||
artifact-name: build-branch-master | |||||||||||||||||
keep-going: false | |||||||||||||||||
quiet: false | |||||||||||||||||
batch_size: 10 | |||||||||||||||||
Comment on lines
+13
to
+21
Check warningCode scanning / CodeQL Workflow does not contain permissions Medium
Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Copilot AutofixAI 3 days ago To fix the issue, we will add a
Suggested changeset
1
.github/workflows/v2-build-branch-master.yml
Copilot is powered by AI and may make mistakes. Always verify output.
Positive FeedbackNegative Feedback
Refresh and try again.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering why we're building on Saturday and Sunday? I know the core team works pretty hard but surely the Sunday build will be identical to the Saturday build no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great question, this
cron
is just a copy-paste from the current implementation. @doctorperceptron