authelia/.travis.yml

84 lines
2.2 KiB
YAML
Raw Normal View History

language: go
2019-11-07 00:59:24 +00:00
required: sudo
2019-11-07 00:59:24 +00:00
go:
2019-11-07 00:59:24 +00:00
- '1.13'
2016-12-17 20:57:09 +00:00
services:
2019-11-07 00:59:24 +00:00
- docker
- ntp
- xvfb
addons:
chrome: stable
apt:
sources:
- google-chrome
packages:
- libgif-dev
- google-chrome-stable
install: # Install ChromeDriver (64bits; replace 64 with 32 for 32bits).
- wget -N https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip -P ~/
- unzip ~/chromedriver_linux64.zip -d ~/
- rm ~/chromedriver_linux64.zip
- sudo mv -f ~/chromedriver /usr/local/share/
- sudo chmod +x /usr/local/share/chromedriver
- sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver
before_script:
2019-11-07 00:59:24 +00:00
- export PATH=./cmd/authelia-scripts/:/tmp:$PATH
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
- nvm install v12 && nvm use v12 && npm i
- source bootstrap.sh
2019-11-07 00:59:24 +00:00
jobs:
include:
- stage: test
script:
- authelia-scripts --log-level debug ci
2019-11-07 00:59:24 +00:00
- &build-images
stage: build images
env:
- ARCH=amd64
install: skip
script:
- while sleep 9m; do echo '===== Prevent build from terminating ====='; done &
- authelia-scripts docker build --arch=$ARCH
- kill %1
after_success:
- authelia-scripts docker push-image --arch=$ARCH
before_deploy:
- docker create --name authelia-binary clems4ever/authelia:$TRAVIS_TAG-$ARCH
- docker cp authelia-binary:/usr/app/authelia ./authelia-linux-$ARCH
- docker cp authelia-binary:/usr/app/public_html ./
- tar -czf authelia-linux-$ARCH.tar.gz authelia-linux-$ARCH public_html
deploy:
provider: releases
api_key: '$GITHUB_API_KEY'
file_glob: true
file: 'authelia-linux-$ARCH.tar.gz'
skip_cleanup: true
on:
tags: true
2019-11-07 00:59:24 +00:00
- <<: *build-images
env:
- ARCH=arm32v7
- <<: *build-images
env:
- ARCH=arm64v8
- stage: deploy manifests
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
install: skip
script:
- authelia-scripts docker push-manifest
2016-12-17 20:57:09 +00:00
notifications:
email:
recipients:
2019-11-07 00:59:24 +00:00
- clement.michaud34@gmail.com
2016-12-17 20:57:09 +00:00
on_success: change
on_failure: always