CI configuration optimization.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Alexey Skobkin 2022-05-31 21:09:20 +03:00
parent 11fafd0047
commit 585fda1aee
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,11 @@ name: default
steps:
- name: validate
image: 'docker/compose:1.29.2'
image: 'docker/compose:alpine-1.29.2'
commands:
- for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
- for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done
when:
event:
include:
- pull_request