1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- dist: bionic
- sudo: required
- language: ruby
- services:
- - docker
- - mysql
- - postgresql
- before_install:
- - sudo apt-get -y install jq
- - gem install bundler -v '< 2' --conservative --force
- before_script:
- - sudo systemctl start postgresql
- env:
- global:
- - APP_SECRET_TOKEN=b2724973fd81c2f4ac0f92ac48eb3f0152c4a11824c122bcf783419a4c51d8b9bba81c8ba6a66c7de599677c7f486242cf819775c433908e77c739c5c8ae118d
- - COVERALLS_PARALLEL=true
- - secure: fzmSI7PQz6CJiIJNAtLAuy3TMmYCrK4bUil3uufh8JkHfpSGWOZt2i6fZ8yZ7pzwG5Aw7eZDgdFsNcEPJlgUDJhlwjg+QxCJslhotTQ9qI3Ieo85peWlU9dZFTOZcrCu0net/hY2FE4ZpTRb5r8A/DRv9ukA8P8tShhePCjckgg=
- - secure: YjW07LpRSiC9xB6PhLQ4LVv2VphvF3IacV43PLfvzdagjy14yAwKXTUlSadgRaMbndB2dlCTe3YcY11a/xtX/2HDrF14NHPXQdL7e2dJUS3CDLSKZK26x1SOiaaDIrl1jO1xr5kOUd+564MAcNUzDTJQR4CrWl/5t6EwW4iYQVc=
- - secure: RJiSTB9Anax6uL6mgYY1m42w71ohlsfIlVCk7ho6W19ZfSzQOfom0mBdeNwfgmXsMMnvnqatfxSg8k3C//pRtI/tjzAovHd7t1YIN1IkDNf9uSpzrIeXXc4fSHaVxnl512oI/eBQy9MSBjVZjrg5XEzLKKEGsZCai+ZKB4PS+nM=
- matrix:
- - DATABASE_ADAPTER=mysql2
- - DATABASE_ADAPTER=postgresql DATABASE_USERNAME=postgres
- - DOCKER_IMAGE=huginn/huginn-single-process DOCKERFILE=docker/single-process/Dockerfile
- - DOCKER_IMAGE=huginn/huginn DOCKERFILE=docker/multi-process/Dockerfile
- matrix:
- exclude:
- - env: DOCKER_IMAGE=huginn/huginn-single-process DOCKERFILE=docker/single-process/Dockerfile
- - env: DOCKER_IMAGE=huginn/huginn DOCKERFILE=docker/multi-process/Dockerfile
- include:
- - rvm: 2.6.5
- env: DATABASE_ADAPTER=mysql2 DOCKER_IMAGE=huginn/huginn-single-process DOCKERFILE=docker/single-process/Dockerfile
- - rvm: 2.6.5
- env: DATABASE_ADAPTER=mysql2 DOCKER_IMAGE=huginn/huginn DOCKERFILE=docker/multi-process/Dockerfile
- rvm:
- - 2.5.8
- - 2.6.6
- cache: bundler
- bundler_args: --without development production
- script:
- - if [ -z "${DOCKER_IMAGE}" ]; then bundle exec rake db:create db:migrate; else true; fi
- - if [ -z "${DOCKER_IMAGE}" ]; then bundle exec rake; else ./build_docker_image.sh; fi
- notifications:
- irc:
- channels:
- - chat.freenode.net#huginn
- template:
- - "<%{author}> %{branch} - %{commit} (%{commit_message}): %{message}"
- - 'Change view : %{compare_url}'
- - 'Build details : %{build_url}'
- webhooks: https://coveralls.io/webhook?repo_token=COVERALLS_REPO_TOKEN
|