2023-07-11 09:26:49 +00:00
|
|
|
apiVersion: config.lighthouse.jenkins-x.io/v1alpha1
|
|
|
|
kind: TriggerConfig
|
|
|
|
spec:
|
|
|
|
postsubmits:
|
2024-04-06 15:54:06 +00:00
|
|
|
- name: rust-test
|
|
|
|
source: "pipeline-rust-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]+$"
|
|
|
|
- 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]+$"
|
2024-04-06 16:21:18 +00:00
|
|
|
- name: build-organic
|
|
|
|
source: "pipeline-build-organic.yaml"
|
2024-04-06 15:54:06 +00:00
|
|
|
# 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-10-16 23:22:59 +00:00
|
|
|
- name: clippy
|
2024-04-06 14:57:04 +00:00
|
|
|
source: "pipeline-rust-clippy.yaml"
|
2023-10-16 23:22:59 +00:00
|
|
|
# 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]+$"
|
2024-04-06 15:54:06 +00:00
|
|
|
- name: format
|
|
|
|
source: "pipeline-format.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]+$"
|