2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 17:10:29 +01:00
website/.circleci/config.yml

247 lines
6.4 KiB
YAML
Raw Normal View History

2019-04-10 18:17:24 +02:00
version: 2
2019-04-11 15:48:36 +02:00
2019-07-05 19:54:54 +02:00
production_env: &production_env
environment:
- SERVER_HOST=https://server-alpha.offen.dev
- SCRIPT_HOST=https://script-alpha.offen.dev
- AUDITORIUM_HOST=https://auditorium-alpha.offen.dev
- VAULT_HOST=https://vault-alpha.offen.dev
2019-08-01 11:01:19 +02:00
- HOMEPAGE_HOST=https://www.offen.dev
2019-07-05 19:54:54 +02:00
- NODE_ENV=production
2019-08-02 10:31:03 +02:00
- SECRET_ID_SERVER_CONNECTION_STRING=alpha/server/postgresConnectionString
2019-07-05 19:54:54 +02:00
deploy_preconditions: &deploy_preconditions
requires:
- server
- vault
- script
- auditorium
- packages
- shared
filters:
branches:
only: /^master$/
2019-07-26 13:26:14 +02:00
build_preconditions: &build_preconditions
filters:
branches:
ignore: gh-pages
2019-04-10 18:17:24 +02:00
jobs:
2019-04-11 15:48:36 +02:00
server:
2019-04-10 18:17:24 +02:00
docker:
- image: circleci/golang:1.12
environment:
- POSTGRES_CONNECTION_STRING=postgres://circle:test@localhost:5432/circle_test?sslmode=disable
- PORT=8080
- EVENT_RETENTION_PERIOD=4464h
- image: circleci/postgres:11.2-alpine
environment:
- POSTGRES_USER=circle
- POSTGRES_PASSWORD=test
2019-04-11 15:48:36 +02:00
working_directory: ~/offen/server
2019-04-10 18:17:24 +02:00
steps:
2019-04-11 15:48:36 +02:00
- checkout:
path: ~/offen
2019-04-10 18:17:24 +02:00
- restore_cache:
2019-04-11 20:19:57 +02:00
key: offen-server-{{ checksum "go.mod" }}
2019-04-10 18:17:24 +02:00
- run:
name: Download modules
command: go mod download
- save_cache:
paths:
- /go/pkg/mod
2019-04-11 20:19:57 +02:00
key: offen-server-{{ checksum "go.mod" }}
2019-04-20 01:37:26 +02:00
- run:
name: Waiting for Postgres to be ready
command: |
for i in `seq 1 10`;
do
nc -z localhost 5432 && echo Success && exit 0
echo -n .
sleep 1
done
echo Failed waiting for Postgres && exit 1
2019-04-10 18:17:24 +02:00
- run:
name: Run tests
command: |
cp ~/offen/bootstrap.yml .
make test-ci
2019-04-11 15:48:36 +02:00
2019-06-06 13:06:31 +02:00
shared:
docker:
- image: circleci/golang:1.12
working_directory: ~/offen/shared
steps:
- checkout:
path: ~/offen
- run:
name: Install dependencies
command: go get ./...
2019-06-06 13:06:31 +02:00
- run:
name: Run tests
command: make test
2019-04-20 04:50:49 +02:00
vault:
docker:
2019-04-20 17:06:06 +02:00
- image: circleci/node:10-browsers
2019-04-20 04:50:49 +02:00
working_directory: ~/offen/vault
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-vault-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/vault/node_modules
key: offen-vault-{{ checksum "package.json" }}
- run:
name: Run tests
2019-04-27 04:35:53 +02:00
command: npm test
2019-04-20 04:50:49 +02:00
2019-05-10 12:54:39 +02:00
script:
docker:
- image: circleci/node:10-browsers
working_directory: ~/offen/script
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-script-{{ checksum "package.json" }}
2019-06-07 15:56:57 +02:00
- run:
name: Install lsof
command: sudo apt-get install lsof
2019-05-10 12:54:39 +02:00
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/script/node_modules
key: offen-script-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
2019-05-21 16:58:40 +02:00
auditorium:
docker:
- image: circleci/node:10-browsers
working_directory: ~/offen/auditorium
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-auditorium-{{ checksum "package.json" }}
- run:
name: Install lsof
command: sudo apt-get install lsof
2019-05-21 16:58:40 +02:00
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/auditorium/node_modules
key: offen-auditorium-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
2019-05-23 16:36:21 +02:00
packages:
docker:
- image: circleci/node:10-browsers
working_directory: ~/offen/packages
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-packages-{{ checksum "package.json" }}
- run:
name: Install lsof
command: sudo apt-get install lsof
2019-05-23 16:36:21 +02:00
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/packages/node_modules
key: offen-packages-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
2019-07-25 16:14:37 +02:00
deploy_homepage:
docker:
- image: circleci/python:3.6-node
2019-07-25 16:14:37 +02:00
working_directory: ~/offen/homepage
environment:
- SOURCE_BRANCH: master
- TARGET_BRANCH: gh-pages
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-homepage-{{ checksum "requirements.txt" }}
- run:
name: Install dependencies
command: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- save_cache:
paths:
- ~/offen/homepage/venv
key: offen-homepage-{{ checksum "requirements.txt" }}
- run:
name: Install image optimization deps
command: |
2019-09-03 22:20:41 +02:00
sudo npm install svgo -g
sudo apt-get install libjpeg-progs optipng
2019-07-25 16:14:37 +02:00
- run:
name: Deploy
command: |
source venv/bin/activate
git config --global user.email $GH_EMAIL
git config --global user.name $GH_NAME
git clone $CIRCLE_REPOSITORY_URL out
cd out
git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH
git rm -rf .
cd ..
make publish
cp -a output/. out/.
2019-07-26 13:21:18 +02:00
mkdir -p out/.circleci && cp -a ./../.circleci/. out/.circleci/.
2019-07-25 16:14:37 +02:00
cp CNAME out/CNAME
cd out
git add -A
git commit -m "Automated deployment to GitHub Pages: ${CIRCLE_SHA1}" --allow-empty
git push origin $TARGET_BRANCH
2019-04-11 15:48:36 +02:00
workflows:
version: 2
test_build_deploy:
2019-04-11 15:48:36 +02:00
jobs:
2019-07-26 13:26:14 +02:00
- server:
<<: *build_preconditions
- vault:
<<: *build_preconditions
- script:
<<: *build_preconditions
- auditorium:
<<: *build_preconditions
- packages:
<<: *build_preconditions
- shared:
<<: *build_preconditions
2019-07-25 16:14:37 +02:00
- deploy_homepage:
<<: *deploy_preconditions