mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-21 14:48:34 +00:00
1bc4415075
Closes #1834 --------- Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Anbraten <anton@ju60.de> Co-authored-by: Lauris BH <lauris@nix.lv>
20 lines
354 B
YAML
20 lines
354 B
YAML
version: 1
|
|
|
|
variables:
|
|
step_template: &base-step
|
|
image: golang:1.19
|
|
commands: &base-cmds
|
|
- go version
|
|
- whoami
|
|
|
|
steps:
|
|
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
|