Drone CI server and Drone Docker runner. #34

Merged
skobkin merged 13 commits from feature_drone into master 2022-03-29 14:23:15 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 54b8827980 - Show all commits

View File

@ -6,5 +6,5 @@ steps:
- name: validate
image: 'docker/compose:1.29.2'
commands:
- for DIR in */ ; do if [[ $DIR =~ ^_ ]] ; then continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
- for DIR in */ ; do if [[ $DIR =~ ^_ ]] ; then continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done
- for DIR in */ ; do if [[ $(expr match "$DIR" '^_') != 0 ]] ; then continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
- for DIR in */ ; do if [[ $(expr match "$DIR" '^_') != 0 ]] ; then continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done