Project 'rc/packer-openstack-hpc-image' was moved to 'rc/hpc-factory'. Please update any links and bookmarks that may still have the old path.
Multi-line command not showing in pipeline UI
By default, pipeline output will collapse multi-line commands. For example, the following commands in .gitlab-ci.yaml
and its output will be:
- |
echo line1
echo line2
echo line3
Output:
$ echo line1 # collapsed multi-line command
line1
line2
line3