Skip to content

Commit f96aa32

Browse files
authored
Stop defaulting to snapshots for integration tests (#2197)
* Run integration tests against non-snapshot on main Fetching SNAPSHOT artifacts is currently flaky. * Reduce number of scheduled integration test runs
1 parent 628254d commit f96aa32

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.buildkite/make.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async function bump (args) {
9494
const pipeline = await readFile(join(import.meta.url, '..', '.buildkite', 'pipeline.yml'), 'utf8')
9595
await writeFile(
9696
join(import.meta.url, '..', '.buildkite', 'pipeline.yml'),
97-
pipeline.replace(/STACK_VERSION: [0-9]+[0-9\.]*[0-9](?:\-SNAPSHOT)?/, `STACK_VERSION: ${cleanVersion}-SNAPSHOT`),
97+
pipeline.replace(/STACK_VERSION: [0-9]+[0-9\.]*[0-9](?:\-SNAPSHOT)?/, `STACK_VERSION: ${cleanVersion}`),
9898
'utf8'
9999
)
100100
}

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ steps:
66
env:
77
NODE_VERSION: "{{ matrix.nodejs }}"
88
TEST_SUITE: "{{ matrix.suite }}"
9-
STACK_VERSION: 8.13.0-SNAPSHOT
9+
STACK_VERSION: 8.13.0
1010
matrix:
1111
setup:
1212
suite:

catalog-info.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,9 @@ spec:
3939
cancel_intermediate_builds: true
4040
cancel_intermediate_builds_branch_filter: '!main'
4141
schedules:
42-
main_semi_daily:
42+
main:
4343
branch: 'main'
44-
cronline: '0 */12 * * *'
45-
8_13_semi_daily:
44+
cronline: '@daily'
45+
8_13:
4646
branch: '8.13'
47-
cronline: '0 */12 * * *'
48-
8_12_daily:
49-
branch: '8.12'
5047
cronline: '@daily'

0 commit comments

Comments
 (0)