2023-12-22 01:20:21 +00:00
|
|
|
apiVersion: config.lighthouse.jenkins-x.io/v1alpha1
|
|
|
|
kind: TriggerConfig
|
|
|
|
spec:
|
|
|
|
postsubmits:
|
|
|
|
- name: build-natter
|
|
|
|
source: "pipeline-build-natter.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/natter.git"
|
|
|
|
branches:
|
|
|
|
- ^main$
|
|
|
|
- ^master$
|
2023-12-22 23:43:58 +00:00
|
|
|
- name: rust-test
|
|
|
|
source: "pipeline-rust-test.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/natter.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-12-23 01:08:24 +00:00
|
|
|
- name: rust-clippy
|
|
|
|
source: "pipeline-rust-clippy.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/natter.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-12-23 01:12:59 +00:00
|
|
|
- name: format
|
|
|
|
source: "pipeline-format.yaml"
|
|
|
|
# Override https-based url from lighthouse events.
|
|
|
|
clone_uri: "git@code.fizz.buzz:talexander/natter.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]+$"
|