mirror of
https://github.com/dokku/dokku.git
synced 2025-12-28 16:06:40 +01:00
This brings us back full-circle, but with a better understanding of the underlying test suite.
107 lines
2.7 KiB
YAML
107 lines
2.7 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
|
|
parallelism: 4
|
|
steps:
|
|
- init-tests
|
|
- run:
|
|
name: run pre-tests
|
|
command: |
|
|
case $CIRCLE_NODE_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
|
|
test:
|
|
executor: default
|
|
parallelism: 4
|
|
steps:
|
|
- init-tests
|
|
- run:
|
|
command: |
|
|
sudo -E make -e test-ci
|
|
no_output_timeout: 60m
|
|
shell: /bin/bash
|
|
- store_artifacts:
|
|
path: ./test-results
|
|
destination: test-results
|
|
- store_test_results:
|
|
path: test-results
|
|
|
|
workflows:
|
|
workflow:
|
|
jobs:
|
|
- build
|
|
- docker-deploy-tests:
|
|
requires:
|
|
- build
|
|
- test
|
|
- go-tests:
|
|
requires:
|
|
- build
|
|
- test
|
|
- test:
|
|
requires:
|
|
- build
|
|
- go-tests
|