mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-06 07:38:43 +00:00
204d05f447
close #1192
18 lines
345 B
YAML
18 lines
345 B
YAML
variables:
|
|
step_template: &base-step
|
|
image: golang:1.19
|
|
commands: &base-cmds
|
|
- go version
|
|
- whoami
|
|
|
|
pipeline:
|
|
test-base-step:
|
|
<<: *base-step
|
|
test base step with latest image:
|
|
<<: *base-step
|
|
image: golang:latest
|
|
test list overwrite:
|
|
<<: *base-step
|
|
commands:
|
|
- <<: *base-cmds
|
|
- hostname
|