Skip to content

Commit

Permalink
Fix golang build (#5039)
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Este-Gracias <sestegra@gmail.com>
  • Loading branch information
sestegra committed Feb 6, 2021
1 parent ef76f72 commit 5824fc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/ci-output-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ spec:
path: /go/src/github.com/golang/example
git:
repo: https://github.com/golang/example.git
revision: cfe12d6
container:
image: golang:1.8
command: [sh, -c]
Expand Down
4 changes: 2 additions & 2 deletions examples/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ metadata:
spec:
# entrypoint is the name of the template used as the starting point of the workflow
entrypoint: ci-example
# the 'ci-example' template accepts an parameter 'revision', with a default of 'master'.
# the 'ci-example' template accepts an parameter 'revision', with a default of 'cfe12d6'.
# this can be overridden via argo CLI (e.g. `argo submit ci.yaml -p revision=0dea2d0`)
arguments:
parameters:
- name: revision
value: master
value: cfe12d6
# a temporary volume, named workdir, will be used as a working directory
# for this workflow. This volume is passed around from step to step.
volumeClaimTemplates:
Expand Down

0 comments on commit 5824fc6

Please sign in to comment.