Skip to content

Commit 20bf62b

Browse files
authored
Update buildkite CI pipeline settings (#425)
1 parent ba32a26 commit 20bf62b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.buildkite/CUDA_Ext.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,3 @@ steps:
2222
GROUP: "CUDA_Ext"
2323
SECRET_CODECOV_TOKEN: "ZfhQu/IcRLqNyZ//ZNs5sjBPaV76IHfU5gui52Qn+Rp8tOurukqgScuyDt+3HQ4R0hJYBw1/Nqg6jmBsvWSc9NEUx8kGsUJFHfN3no0+b+PFxA8oJkWc9EpyIsjht5ZIjlsFWR3f0DpPqMEle/QyWOPcal63CChXR8oAoR+Fz1Bh8GkokLlnC8F9Ugp9xBlu401GCbyZhvLTZnNIgK5yy9q8HBJnBg1cPOhI81J6JvYpEmcIofEzFV/qkfpTUPclu43WNoFX2DZPzbxilf3fsAd5/+nRkRfkNML8KiN4mnmjHxPPbuY8F5zC/PS5ybXtDpfvaMQc01WApXCkZk0ZAQ==;U2FsdGVkX1+eDT7dqCME5+Ox5i8GvWRTQbwiP/VYjapThDbxXFDeSSIC6Opmon+M8go22Bun3bat6Fzie65ang=="
2424
timeout_in_minutes: 60
25-
if: |
26-
// Don't run Buildkite if the commit message includes the text [skip ci], [ci skip], or [no ci]
27-
// Don't run Buildkite for PR draft
28-
// Only run Buildkite when new commits and PR are made to main branch
29-
build.message !~ /\[skip ci\]/ &&
30-
build.message !~ /\[ci skip\]/ &&
31-
build.message !~ /\[no ci\]/ &&
32-
!build.pull_request.draft &&
33-
(build.branch =~ /main/ || build.pull_request.base_branch =~ /main/)

.buildkite/pipeline.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# see: https://github.com/staticfloat/forerunner-buildkite-plugin
22
steps:
33
- label: ":runner: Dynamically launch pipelines"
4+
if: |
5+
// Don't run Buildkite if the commit message includes the text [skip ci], [ci skip], or [no ci]
6+
// Don't run Buildkite for PR draft
7+
// Only run Buildkite when new commits and PR are made to main branch
8+
build.message !~ /\[skip ci\]/ &&
9+
build.message !~ /\[ci skip\]/ &&
10+
build.message !~ /\[no ci\]/ &&
11+
!build.pull_request.draft &&
12+
(build.branch =~ /main/ || build.pull_request.base_branch =~ /main/)
13+
agents:
14+
queue: "juliagpu"
415
plugins:
516
- staticfloat/forerunner: # CUDA.jl tests
617
watch:
@@ -12,5 +23,3 @@ steps:
1223
- "test/ext-test/gpu/**"
1324
- "Project.toml"
1425
target: ".buildkite/CUDA_Ext.yml"
15-
agents:
16-
queue: "juliagpu"

0 commit comments

Comments
 (0)