Compare commits

..

1 commit

Author SHA1 Message Date
54e5a7c358
WIP
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline failed
2024-06-20 23:12:26 +02:00

View file

@ -10,6 +10,16 @@ variables:
- &image 'git.verdigado.com/verdigado-images/container-pre-commit:${CI_COMMIT_SHA}'
steps:
await-image:
image: alpine
environment:
IMAGE: *image
commands:
- echo -${CI_COMMIT_SHA}-
- apk add --update --no-cache img
- 'while !(( img pull $IMAGE 2>&1 | grep --quiet "Error: failed to unmount" )) ; do echo "Awaiting image $IMAGE..."; sleep 3; done'
- echo 'found.'
salt clone:
image: woodpeckerci/plugin-git
settings:
@ -19,15 +29,6 @@ steps:
ref: refs/heads/master
branch: master
await-image:
image: alpine
environment:
IMAGE: *image
commands:
- echo -${CI_COMMIT_SHA}-
- apk add --update --no-cache img
- 'while !(( img pull $IMAGE 2>&1 | grep "Error: failed to unmount" )) ; do echo "Awaiting image $IMAGE..."; sleep 1; done'
salt pre-commit:
image: *image
depends_on:
@ -38,3 +39,23 @@ steps:
commands:
- cd salt
- pre-commit run --all-files
rocketchat2matrix clone:
image: woodpeckerci/plugin-git
settings:
remote: https://git.verdigado.com/NB-Public/rocketchat2matrix.git
path: rocketchat2matrix
sha: ''
ref: refs/heads/master
branch: master
rocketchat2matrix pre-commit:
image: *image
depends_on:
- await-image
- rocketchat2matrix clone
environment:
- SKIP=no-commit-to-branch # Ignore "don't commit to protected branch" check
commands:
- cd rocketchat2matrix
- pre-commit run --all-files