74 lines
2.1 KiB
YAML
74 lines
2.1 KiB
YAML
name: authentik-ci-outpost
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- next
|
|
- version-*
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint-golint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '^1.16.3'
|
|
- name: Generate API
|
|
run: |
|
|
make gen-outpost
|
|
- 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:
|
|
needs:
|
|
- lint-golint
|
|
strategy:
|
|
matrix:
|
|
type:
|
|
- proxy
|
|
- ldap
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1.2.0
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
- name: prepare variables
|
|
id: ev
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.HARBOR_USERNAME }}
|
|
run: |
|
|
python ./scripts/gh_do_set_branch.py
|
|
- name: Login to Container Registry
|
|
uses: docker/login-action@v1
|
|
if: ${{ secrets.HARBOR_USERNAME != "" }}
|
|
with:
|
|
registry: beryju.org
|
|
username: ${{ secrets.HARBOR_USERNAME }}
|
|
password: ${{ secrets.HARBOR_PASSWORD }}
|
|
- name: Building Docker Image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
push: ${{ secrets.HARBOR_USERNAME != "" }}
|
|
tags: |
|
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchName }}
|
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchName }}-${{ steps.ev.outputs.timestamp }}
|
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ steps.ev.outputs.sha }}
|
|
file: ${{ matrix.type }}.Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
build-args: |
|
|
GIT_BUILD_HASH=${{ steps.ev.outputs.sha }}
|