mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-24 06:15:46 +00:00
Use workingDir instead of workingdir 🐺
Just use the correct camelcase field. Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
This commit is contained in:
parent
c1dcad81d5
commit
55033bb02a
@ -21,7 +21,7 @@ spec:
|
||||
|
||||
steps:
|
||||
- name: conftest
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
image: instrumenta/conftest:latest
|
||||
command:
|
||||
- conftest
|
||||
|
@ -21,7 +21,7 @@ spec:
|
||||
|
||||
steps:
|
||||
- name: helm-conftest
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
image: instrumenta/helm-conftest:latest
|
||||
command:
|
||||
- helm
|
||||
|
@ -32,7 +32,7 @@ spec:
|
||||
steps:
|
||||
- name: build
|
||||
image: golang:$(inputs.params.version)
|
||||
workingdir: /workspace/src/$(inputs.params.package)
|
||||
workingDir: /workspace/src/$(inputs.params.package)
|
||||
script: |
|
||||
go build $(inputs.params.flags) $(inputs.params.packages)
|
||||
env:
|
||||
|
@ -29,7 +29,7 @@ spec:
|
||||
steps:
|
||||
- name: lint
|
||||
image: golangci/golangci-lint:$(inputs.params.version)
|
||||
workingdir: /workspace/src/$(inputs.params.package)
|
||||
workingDir: /workspace/src/$(inputs.params.package)
|
||||
script: |
|
||||
golangci-lint run $(inputs.params.flags)
|
||||
env:
|
||||
|
@ -32,7 +32,7 @@ spec:
|
||||
steps:
|
||||
- name: unit-test
|
||||
image: golang:$(inputs.params.version)
|
||||
workingdir: /workspace/src/$(inputs.params.package)
|
||||
workingDir: /workspace/src/$(inputs.params.package)
|
||||
script: |
|
||||
go test $(inputs.params.flags) $(inputs.params.packages)
|
||||
env:
|
||||
|
@ -27,7 +27,7 @@ spec:
|
||||
|
||||
steps:
|
||||
- name: build-and-push
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
image: $(inputs.params.BUILDER_IMAGE)
|
||||
# specifying DOCKER_CONFIG is required to allow kaniko to detect docker credential
|
||||
# https://github.com/tektoncd/pipeline/pull/706
|
||||
|
@ -19,7 +19,7 @@ spec:
|
||||
|
||||
steps:
|
||||
- name: kubeval
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
image: garethr/kubeval:latest
|
||||
command:
|
||||
- kubeval
|
||||
|
@ -27,7 +27,7 @@ spec:
|
||||
steps:
|
||||
- name: build-and-push
|
||||
image: gcr.io/makisu-project/makisu:v0.1.10
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
command:
|
||||
- /makisu-internal/makisu
|
||||
- build
|
||||
|
@ -110,7 +110,7 @@ spec:
|
||||
steps:
|
||||
- name: mvn-settings
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal:latest
|
||||
workingdir: /.m2
|
||||
workingDir: /.m2
|
||||
command:
|
||||
- '/bin/bash'
|
||||
- '-c'
|
||||
|
@ -21,7 +21,7 @@ spec:
|
||||
steps:
|
||||
- name: mvn-settings
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal:latest
|
||||
workingdir: /.m2
|
||||
workingDir: /.m2
|
||||
command:
|
||||
- '/bin/bash'
|
||||
- '-c'
|
||||
|
@ -38,7 +38,7 @@ spec:
|
||||
volumeMounts:
|
||||
- mountPath: /gen-source
|
||||
name: gen-source
|
||||
workingdir: /workspace/source
|
||||
workingDir: /workspace/source
|
||||
- command:
|
||||
- buildah
|
||||
- bud
|
||||
@ -58,7 +58,7 @@ spec:
|
||||
name: varlibcontainers
|
||||
- mountPath: /gen-source
|
||||
name: gen-source
|
||||
workingdir: /gen-source
|
||||
workingDir: /gen-source
|
||||
- command:
|
||||
- buildah
|
||||
- push
|
||||
|
Loading…
Reference in New Issue
Block a user