File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ sudo: required
22language : go
33services :
44 - docker
5- script : make docker-build && make test
5+ script :
6+ - make docker-build
7+ - make test
68notifications :
79 slack :
810 rooms :
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ IMAGE_PREFIX ?= drycc
88
99include versioning.mk
1010
11- SHELL_SCRIPTS = $(wildcard _scripts/* .sh contrib/ci/* .sh rootfs/bin/* backup) rootfs/bin/is_running
11+ SHELL_SCRIPTS = $(wildcard _scripts/* .sh contrib/ci/* .sh rootfs/bin/* )
1212
1313# The following variables describe the containerized development environment
1414# and other build options
Original file line number Diff line number Diff line change @@ -4,13 +4,16 @@ ACCESS_KEY_FILE="/var/run/secrets/drycc/objectstore/creds/accesskey"
44SECRET_KEY_FILE=" /var/run/secrets/drycc/objectstore/creds/secretkey"
55
66if [ -f $BUCKET_FILE ]; then
7- export MINIO_BUCKET=$( cat " $BUCKET_FILE " )
7+ MINIO_BUCKET=$( cat " $BUCKET_FILE " )
8+ export MINIO_BUCKET
89fi
910if [ -f $ACCESS_KEY_FILE ]; then
10- export MINIO_ACCESS_KEY=$( cat " $ACCESS_KEY_FILE " )
11+ MINIO_ACCESS_KEY=$( cat " $ACCESS_KEY_FILE " )
12+ export MINIO_ACCESS_KEY
1113fi
1214if [ -f $SECRET_KEY_FILE ]; then
13- export MINIO_SECRET_KEY=$( cat " $SECRET_KEY_FILE " )
15+ MINIO_SECRET_KEY=$( cat " $SECRET_KEY_FILE " )
16+ export MINIO_SECRET_KEY
1417fi
1518
1619export MINIO_ENDPOINT=http://" ${DRYCC_MINIO_SERVICE_HOST} :${DRYCC_MINIO_SERVICE_PORT} "
You can’t perform that action at this time.
0 commit comments