FoundKey/.circleci/config.yml

182 lines
4.8 KiB
YAML
Raw Normal View History

version: 2.1
2018-10-29 12:48:35 +00:00
executors:
default:
working_directory: /tmp/workspace
docker:
- image: misskey/ci:latest
- image: circleci/mongo:latest
with-redis:
working_directory: /tmp/workspace
docker:
- image: misskey/ci:latest
- image: circleci/mongo:latest
- image: circleci/redis:latest
docker:
working_directory: /tmp/workspace
2018-10-26 18:46:48 +00:00
docker:
- image: docker:latest
alpine:
working_directory: /tmp/workspace
docker:
- image: alpine:latest
jobs:
ok:
executor: alpine
steps:
- run:
name: OK
command: |
echo -e '\033[0;32mOK\033[0;39m'
build:
executor: default
2018-10-26 18:46:48 +00:00
steps:
- checkout
2019-01-27 11:19:24 +00:00
- run:
name: Ensure yarn.lock
command: |
touch yarn.lock
- restore_cache:
name: Restore npm package caches
keys:
2019-01-27 11:13:06 +00:00
- yarn-v1-arch-{{ arch }}-env-{{ .Environment.variableName }}-package-{{ checksum "package.json" }}-lock-{{ checksum "yarn.lock" }}
- yarn-v1-arch-{{ arch }}-env-{{ .Environment.variableName }}-package-{{ checksum "package.json" }}-
- yarn-v1-arch-{{ arch }}-env-{{ .Environment.variableName }}-
- yarn-v1-arch-{{ arch }}-
- yarn-v1-
2018-10-26 18:46:48 +00:00
- run:
name: Install Dependencies
2018-10-26 18:46:48 +00:00
command: |
2019-02-03 07:57:36 +00:00
yarn install
2018-10-26 18:46:48 +00:00
- run:
name: Configure
2018-10-26 18:46:48 +00:00
command: |
2018-11-05 21:12:51 +00:00
cp .circleci/misskey/default.yml .config
cp .circleci/misskey/test.yml .config
2018-10-26 18:46:48 +00:00
- run:
name: Build
2018-10-26 18:46:48 +00:00
command: |
2019-01-27 11:13:06 +00:00
yarn build
2019-01-27 11:19:24 +00:00
touch yarn.lock
- save_cache:
name: Cache npm packages
2019-01-27 11:13:06 +00:00
key: yarn-v1-arch-{{ arch }}-env-{{ .Environment.variableName }}-package-{{ checksum "package.json" }}-lock-{{ checksum "yarn.lock" }}
paths:
- node_modules
# - store_artifacts:
# path: built
- persist_to_workspace:
root: .
paths:
- .
test:
parameters:
executor:
type: string
default: "default"
without_redis:
type: boolean
default: false
executor: <<parameters.executor>>
steps:
- attach_workspace:
at: /tmp/workspace
- when:
condition: <<parameters.without_redis>>
steps:
- run:
name: Configure
command: |
mv .config/test.yml .config/test_redis.yml
touch .config/test.yml
cat .config/test_redis.yml | while IFS= read line; do if [[ "$line" = '# __REDIS__' ]]; then break; else echo "$line" >> .config/test.yml; fi; done
2018-10-26 18:46:48 +00:00
- run:
name: Test
2018-10-26 18:46:48 +00:00
command: |
2019-01-27 11:13:06 +00:00
yarn test
2019-01-27 11:19:24 +00:00
touch yarn.lock
- save_cache:
name: Cache npm packages
2019-01-27 11:13:06 +00:00
key: yarn-v1-arch-{{ arch }}-env-{{ .Environment.variableName }}-package-{{ checksum "package.json" }}-lock-{{ checksum "yarn.lock" }}
paths:
- node_modules
docker:
parameters:
with_deploy:
type: boolean
default: false
executor: docker
2018-10-26 18:46:48 +00:00
steps:
- checkout
- setup_remote_docker
- run:
name: Build
2018-10-26 18:46:48 +00:00
command: |
2018-11-06 17:06:32 +00:00
docker build -t misskey/misskey .
- when:
condition: <<parameters.with_deploy>>
steps:
- run:
name: Deploy
command: |
2018-10-31 13:00:21 +00:00
if [ "$DOCKERHUB_USERNAME$DOCKERHUB_PASSWORD" ]
then
2018-11-11 12:34:50 +00:00
apk update && apk add jq
docker tag misskey/misskey misskey/misskey:$(cat package.json | jq -r .version)
2018-10-31 13:00:21 +00:00
docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD
docker push misskey/misskey
else
echo -e '\033[0;33mAborted deploying to Docker Hub\033[0;39m'
fi
2018-10-26 18:46:48 +00:00
workflows:
version: 2
nodejs:
2018-10-26 18:46:48 +00:00
jobs:
- ok:
filters:
branches:
only:
- l10n_develop
- imgbot
- patch-autogen
2019-02-16 02:10:06 +00:00
- hold:
type: approval
filters:
branches:
ignore: master
- build:
2019-02-16 02:10:06 +00:00
requires:
- hold
- test:
executor: with-redis
requires:
- build
- test:
without_redis: true
requires:
- build
docker:
jobs:
2019-02-16 08:05:56 +00:00
- ok:
filters:
branches:
ignore: master
- hold:
type: approval
filters:
branches:
ignore: master
- docker:
requires:
- hold
filters:
branches:
ignore: master
- docker:
with_deploy: true
filters:
branches:
only: master