2023-07-11 09:26:49 +00:00
|
|
|
apiVersion: config.lighthouse.jenkins-x.io/v1alpha1
|
|
|
|
kind: TriggerConfig
|
|
|
|
spec:
|
|
|
|
postsubmits:
|
2023-07-14 00:30:25 +00:00
|
|
|
- name: rustfmt
|
|
|
|
source: "pipeline-rustfmt.yaml"
|
2023-07-11 10:49:08 +00:00
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/organic.git"
|
|
|
|
branches:
|
2023-07-14 04:27:26 +00:00
|
|
|
- ^main$
|
|
|
|
- ^master$
|
2023-07-14 00:30:25 +00:00
|
|
|
- name: rust-test
|
|
|
|
source: "pipeline-rust-test.yaml"
|
2023-07-11 10:49:08 +00:00
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/organic.git"
|
2023-07-14 00:30:25 +00:00
|
|
|
skip_branches:
|
|
|
|
# We already run on every commit, so running when the semver tags get pushed is causing needless double-processing.
|
2023-07-13 03:14:22 +00:00
|
|
|
- "^v[0-9]+\\.[0-9]+\\.[0-9]+$"
|
2023-09-06 20:00:09 +00:00
|
|
|
- name: rust-foreign-document-test
|
|
|
|
source: "pipeline-foreign-document-test.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/organic.git"
|
|
|
|
skip_branches:
|
|
|
|
# We already run on every commit, so running when the semver tags get pushed is causing needless double-processing.
|
|
|
|
- "^v[0-9]+\\.[0-9]+\\.[0-9]+$"
|
2023-08-11 00:34:56 +00:00
|
|
|
- name: rust-build
|
|
|
|
source: "pipeline-rust-build.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/organic.git"
|
|
|
|
skip_branches:
|
|
|
|
# We already run on every commit, so running when the semver tags get pushed is causing needless double-processing.
|
|
|
|
- "^v[0-9]+\\.[0-9]+\\.[0-9]+$"
|