indentation

This commit is contained in:
Paul Reeves 2023-05-15 11:07:40 +02:00
parent fda4cd9ccb
commit b6c83ccec9

View File

@ -13,21 +13,20 @@ imagedefs:
image: dctl-registry.dcinet:5000/suse-15.4/gcc-113 image: dctl-registry.dcinet:5000/suse-15.4/gcc-113
steps: steps:
- name: build - name: build
<<: *anchor_compiler_image <<: *anchor_compiler_image
volumes: volumes:
- name: tempx - name: tempx
path: /tmp path: /tmp
- name: cache - name: cache
path: /tmp/cache path: /tmp/cache
commands: commands:
- export CC=gcc - export CC=gcc
- make -f makefile.shared test_standalone >test_gcc_1.txt 2>test_gcc_2.txt - make -f makefile.shared test_standalone >test_gcc_1.txt 2>test_gcc_2.txt
- ./test >test_std.txt 2>test_err.txt - ./test >test_std.txt 2>test_err.txt
- name: build-fail - name: build-fail
<<: *anchor_compiler_image <<: *anchor_compiler_image
commands: commands:
- echo "Go do some debugging - you've got $${SLEEP} seconds" - echo "Go do some debugging - you've got $${SLEEP} seconds"
@ -35,22 +34,21 @@ steps:
- cat test_gcc_1.txt - cat test_gcc_1.txt
- cat test_std.txt - cat test_std.txt
- cat test_err.txt - cat test_err.txt
when: when:
status: status:
- failure - failure
- name: build-success - name: build-success
<<: *anchor_compiler_image <<: *anchor_compiler_image
commands: commands:
# - echo "Go check where the binaries are - you've got $${SLEEP} seconds" # - echo "Go check where the binaries are - you've got $${SLEEP} seconds"
# - sleep $${SLEEP} # - sleep $${SLEEP}
- cat test_gcc_2.txt - cat test_gcc_2.txt
when: when:
status: status:
- success - success
- name: build-install - name: build-install
<<: *anchor_compiler_image <<: *anchor_compiler_image
depends_on: build-success depends_on: build-success
commands: commands: