137 lines
3.9 KiB
YAML
137 lines
3.9 KiB
YAML
name: authentik-ci-outpost
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
- version-*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint-golint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "^1.17"
|
|
- name: Prepare and generate API
|
|
run: |
|
|
# Create folder structure for go embeds
|
|
mkdir -p web/dist
|
|
mkdir -p website/help
|
|
touch web/dist/test website/help/test
|
|
- name: Generate API
|
|
run: make gen-client-go
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
args: --timeout 5000s
|
|
test-unittest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "^1.17"
|
|
- name: Generate API
|
|
run: make gen-client-go
|
|
- name: Go unittests
|
|
run: |
|
|
go test -timeout 0 -v -race -coverprofile=coverage.out -covermode=atomic -cover ./...
|
|
ci-outpost-mark:
|
|
needs:
|
|
- lint-golint
|
|
- test-unittest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo mark
|
|
build:
|
|
timeout-minutes: 120
|
|
needs:
|
|
- ci-outpost-mark
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
type:
|
|
- proxy
|
|
- ldap
|
|
arch:
|
|
- 'linux/amd64'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: prepare variables
|
|
uses: ./.github/actions/docker-push-variables
|
|
id: ev
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
- name: Login to Container Registry
|
|
uses: docker/login-action@v2
|
|
if: ${{ steps.ev.outputs.shouldBuild == 'true' }}
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Generate API
|
|
run: make gen-client-go
|
|
- name: Build Docker Image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
push: ${{ steps.ev.outputs.shouldBuild == 'true' }}
|
|
tags: |
|
|
ghcr.io/goauthentik/dev-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchNameContainer }}
|
|
ghcr.io/goauthentik/dev-${{ matrix.type }}:gh-${{ steps.ev.outputs.sha }}
|
|
file: ${{ matrix.type }}.Dockerfile
|
|
build-args: |
|
|
GIT_BUILD_HASH=${{ steps.ev.outputs.sha }}
|
|
VERSION_FAMILY=${{ steps.ev.outputs.versionFamily }}
|
|
platforms: ${{ matrix.arch }}
|
|
build-outpost-binary:
|
|
timeout-minutes: 120
|
|
needs:
|
|
- ci-outpost-mark
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
type:
|
|
- proxy
|
|
- ldap
|
|
goos: [linux]
|
|
goarch: [amd64, arm64]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "^1.17"
|
|
- uses: actions/setup-node@v3.6.0
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
- name: Generate API
|
|
run: make gen-client-go
|
|
- name: Build web
|
|
working-directory: web/
|
|
run: |
|
|
npm ci
|
|
npm run build-proxy
|
|
- name: Build outpost
|
|
run: |
|
|
set -x
|
|
export GOOS=${{ matrix.goos }}
|
|
export GOARCH=${{ matrix.goarch }}
|
|
go build -tags=outpost_static_embed -v -o ./authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }} ./cmd/${{ matrix.type }}
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }}
|
|
path: ./authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }}
|