mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
language: go
|
|
|
|
required: sudo
|
|
|
|
go:
|
|
- '1.13'
|
|
|
|
services:
|
|
- 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:
|
|
- export PATH=./cmd/authelia-scripts/:/tmp:$PATH
|
|
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
|
|
- nvm install v11 && nvm use v11 && npm i
|
|
- source bootstrap.sh
|
|
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
script:
|
|
- authelia-scripts --log-level debug ci
|
|
# TODO(c.michaud): publish built artifact on Github.
|
|
- &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
|
|
- <<: *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
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- clement.michaud34@gmail.com
|
|
on_success: change
|
|
on_failure: always
|