Files
dokku/.circleci/config.yml
Jose Diaz-Gonzalez ca5c9d6c45 tests: fix syntax
2020-06-19 23:41:19 -04:00

118 lines
3.2 KiB
YAML

version: 2.1
commands:
init-tests:
description: "Setup dokku for testing"
steps:
- checkout
- attach_workspace:
at: /home/circleci/project
- run:
name: resolve dokku.me
command: |
# dokku.me now resolves to 10.0.0.2. add 10.0.0.2/24 to ens4
# this is maybe eth0 on github
ifconfig
sudo ip addr add 10.0.0.2/24 broadcast 10.0.0.255 dev ens4
- run:
name: install ci-dependencies
command: make ci-dependencies
- run:
name: setup tests
command: ./tests/ci/setup.sh
- run:
name: dokku cleanup:skip
command: echo 'export DOKKU_SKIP_CLEANUP=true' | sudo tee /home/dokku/.dokkurc/dokku_skip_cleanup
- run:
name: dokku report
command: dokku report
executors:
default:
machine:
image: ubuntu-1604:201903-01
working_directory: /home/circleci/project
jobs:
build:
executor: default
steps:
- checkout
- run:
name: build package
command: ./tests/ci/setup.sh build
- persist_to_workspace:
root: /home/circleci/project
paths:
- build
docker-deploy-tests:
executor: default
steps:
- init-tests
- run:
name: test docker deploys
shell: /bin/bash
no_output_timeout: 20
command: |
./tests/ci/setup.sh docker
DOKKU_SSH_PORT=3022 sudo -E make -e test-ci-docker
go-tests:
executor: default
parameters:
index:
type: integer
steps:
- init-tests
- run:
name: run pre-tests
command: |
case << parameters.index >> in
0) sudo -E make -e lint-ci go-tests ci-go-coverage ;;
1) sudo -E make -e deploy-test-checks-root deploy-test-config ;;
2) sudo -E make -e deploy-test-multi ;;
3) sudo -E make -e deploy-test-go-fail-predeploy deploy-test-go-fail-postdeploy ;;
esac
- store_artifacts:
path: ./coverage.out
unit-tests:
executor: default
parameters:
index:
type: integer
steps:
- init-tests
- run:
shell: /bin/bash
command: |
mkdir -p test-results/bats
cd tests/unit && echo "executing tests: $(shell cd tests/unit ; ls << parameters.index >>*.bats | xargs)"
cd tests/unit && bats --formatter bats-format-junit -e -T -o ../../test-results/bats $(shell cd tests/unit ; ls << parameters.index >>*.bats | xargs)
no_output_timeout: 60m
- store_artifacts:
path: ./test-results
destination: test-results
- store_test_results:
path: test-results
workflows:
workflow:
jobs:
- build
- docker-deploy-tests:
requires:
- build
- unit-tests
- go-tests:
matrix:
parameters:
index: [0, 1, 2, 3]
requires:
- build
- unit-tests
- unit-tests:
matrix:
parameters:
index: [10, 20, 30, 40, 50, 60, 70, 80, 90]
requires:
- build