mirror of
https://github.com/elyby/accounts.git
synced 2024-11-08 13:42:30 +05:30
126 lines
4.1 KiB
YAML
126 lines
4.1 KiB
YAML
stages:
|
|
- test
|
|
- build
|
|
- release
|
|
|
|
variables:
|
|
CONTAINER_IMAGE: "registry.ely.by/elyby/accounts"
|
|
|
|
test:backend:
|
|
image: docker:18.02
|
|
services:
|
|
- mariadb:10.2.11
|
|
- redis:3.0-alpine
|
|
variables:
|
|
# mariadb config
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "true"
|
|
MYSQL_DATABASE: "ely_accounts_test"
|
|
MYSQL_USER: "ely_accounts_tester"
|
|
MYSQL_PASSWORD: "ely_accounts_tester_password"
|
|
stage: test
|
|
before_script:
|
|
- docker login -u gitlab-ci -p $CI_BUILD_TOKEN registry.ely.by
|
|
- echo "$SSH_PRIVATE_KEY" > id_rsa
|
|
script:
|
|
- export TEMP_DEV_IMAGE="${CONTAINER_IMAGE}:ci-${CI_BUILD_ID}"
|
|
- docker build --pull -f Dockerfile-dev -t $TEMP_DEV_IMAGE .
|
|
# https://github.com/FriendsOfPHP/PHP-CS-Fixer#using-php-cs-fixer-on-ci
|
|
- COMMIT_RANGE="${CI_COMMIT_BEFORE_SHA}...${CI_COMMIT_SHA}"
|
|
- CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "${COMMIT_RANGE}")
|
|
- |
|
|
if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then
|
|
EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${CHANGED_FILES}")
|
|
else
|
|
EXTRA_ARGS=''
|
|
fi
|
|
- >
|
|
docker run --rm
|
|
$TEMP_DEV_IMAGE
|
|
vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no ${EXTRA_ARGS}
|
|
- >
|
|
docker run --rm
|
|
--add-host=mariadb:`getent hosts mariadb | awk '{ print $1 ; exit }'`
|
|
--add-host=redis:`getent hosts redis | awk '{ print $1 ; exit }'`
|
|
-e YII_DEBUG="true"
|
|
-e YII_ENV="test"
|
|
-e DB_HOST="mariadb"
|
|
-e DB_DATABASE="ely_accounts_test"
|
|
-e DB_USER="ely_accounts_tester"
|
|
-e DB_PASSWORD="ely_accounts_tester_password"
|
|
-e REDIS_HOST="redis"
|
|
$TEMP_DEV_IMAGE
|
|
php vendor/bin/codecept run -c tests
|
|
|
|
test:frontend:
|
|
image: node:9.2.1-alpine
|
|
stage: test
|
|
cache:
|
|
paths:
|
|
- frontend/node_modules
|
|
before_script:
|
|
# Enable SSL support for wget
|
|
- apk add --update openssl
|
|
# https://github.com/facebook/flow/issues/3649#issuecomment-308070179
|
|
- wget -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub
|
|
- wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-2.25-r0.apk
|
|
- apk add glibc-2.25-r0.apk
|
|
script:
|
|
- cd frontend
|
|
- yarn run build:install
|
|
- yarn run lint
|
|
- yarn flow
|
|
- yarn test
|
|
|
|
build:production:
|
|
image: docker:18.02
|
|
stage: build
|
|
variables:
|
|
GA_ID: "UA-45299905-3"
|
|
SENTRY_CDN: "https://088e7718236a4f91937a81fb319a93f6@sentry.ely.by/2"
|
|
before_script:
|
|
- docker login -u gitlab-ci -p $CI_BUILD_TOKEN registry.ely.by
|
|
- export VERSION="${CI_COMMIT_TAG:-${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA:0:7}}"
|
|
- echo "$SSH_PRIVATE_KEY" > id_rsa
|
|
- |
|
|
echo "
|
|
module.exports = {
|
|
version: '$VERSION',
|
|
ga: {id: '$GA_ID'},
|
|
sentryCdn: '$SENTRY_CDN',
|
|
};
|
|
" > frontend/config/env.js
|
|
- sed -i"" -e "s/{{PLACE_VERSION_HERE}}/$VERSION/g" common/config/config.php
|
|
script:
|
|
- export IMAGE_NAME="$CONTAINER_IMAGE:latest"
|
|
- docker build --pull -t $IMAGE_NAME .
|
|
only:
|
|
- develop
|
|
- tags
|
|
|
|
release:latest:
|
|
image: docker:18.02
|
|
stage: release
|
|
variables:
|
|
GIT_STRATEGY: none
|
|
before_script:
|
|
- docker login -u gitlab-ci -p $CI_BUILD_TOKEN registry.ely.by
|
|
script:
|
|
- docker push $CONTAINER_IMAGE:latest
|
|
only:
|
|
- develop
|
|
- tags
|
|
|
|
release:tag:
|
|
image: docker:18.02
|
|
stage: release
|
|
variables:
|
|
GIT_STRATEGY: none
|
|
before_script:
|
|
- docker login -u gitlab-ci -p $CI_BUILD_TOKEN registry.ely.by
|
|
script:
|
|
- export IMAGE_NAME="$CONTAINER_IMAGE:$CI_BUILD_TAG"
|
|
- docker tag $CONTAINER_IMAGE:latest $IMAGE_NAME
|
|
- docker push $IMAGE_NAME
|
|
only:
|
|
- tags
|