2021-08-30 18:21:15 +00:00
|
|
|
name: authentik-ci-outpost
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-03 08:53:39 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- next
|
|
|
|
- version-*
|
|
|
|
pull_request:
|
2021-09-07 08:06:30 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2021-08-30 18:21:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-golint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: '^1.16.3'
|
|
|
|
- name: Run linter
|
|
|
|
run: |
|
|
|
|
# Create folder structure for go embeds
|
|
|
|
mkdir -p web/dist
|
|
|
|
mkdir -p website/help
|
|
|
|
touch web/dist/test website/help/test
|
|
|
|
docker run \
|
|
|
|
--rm \
|
|
|
|
-v $(pwd):/app \
|
|
|
|
-w /app \
|
|
|
|
golangci/golangci-lint:v1.39.0 \
|
|
|
|
golangci-lint run -v --timeout 200s
|
|
|
|
build:
|
2021-11-10 08:31:56 +00:00
|
|
|
timeout-minutes: 120
|
2021-08-30 18:21:15 +00:00
|
|
|
needs:
|
|
|
|
- lint-golint
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
type:
|
|
|
|
- proxy
|
|
|
|
- ldap
|
2021-11-21 21:33:43 +00:00
|
|
|
arch:
|
|
|
|
- 'linux/amd64'
|
|
|
|
- 'linux/arm64'
|
|
|
|
- 'linux/arm/v7'
|
2021-08-30 18:21:15 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: prepare variables
|
|
|
|
id: ev
|
2021-09-03 08:53:39 +00:00
|
|
|
env:
|
|
|
|
DOCKER_USERNAME: ${{ secrets.HARBOR_USERNAME }}
|
2021-08-30 18:21:15 +00:00
|
|
|
run: |
|
2021-10-07 18:20:59 +00:00
|
|
|
python ./scripts/gh_env.py
|
2021-09-01 13:03:27 +00:00
|
|
|
- name: Login to Container Registry
|
2021-08-30 18:21:15 +00:00
|
|
|
uses: docker/login-action@v1
|
2021-09-03 08:57:44 +00:00
|
|
|
if: ${{ steps.ev.outputs.shouldBuild == 'true' }}
|
2021-08-30 18:21:15 +00:00
|
|
|
with:
|
2021-10-11 12:08:34 +00:00
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2021-08-30 18:21:15 +00:00
|
|
|
- name: Building Docker Image
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-09-03 08:57:44 +00:00
|
|
|
push: ${{ steps.ev.outputs.shouldBuild == 'true' }}
|
2021-08-30 18:21:15 +00:00
|
|
|
tags: |
|
2021-10-11 12:08:34 +00:00
|
|
|
ghcr.io/goauthentik/dev-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchNameContainer }}
|
|
|
|
ghcr.io/goauthentik/dev-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchNameContainer }}-${{ steps.ev.outputs.timestamp }}
|
|
|
|
ghcr.io/goauthentik/dev-${{ matrix.type }}:gh-${{ steps.ev.outputs.sha }}
|
2021-08-30 18:21:15 +00:00
|
|
|
file: ${{ matrix.type }}.Dockerfile
|
|
|
|
build-args: |
|
2021-09-01 14:19:29 +00:00
|
|
|
GIT_BUILD_HASH=${{ steps.ev.outputs.sha }}
|
2021-11-21 21:33:43 +00:00
|
|
|
platforms: ${{ matrix.terraform }}
|