mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3487fd392e
* [FEATURE] Add API docs and swagger-ui This change will serve out swagger-ui at the `/api/` root path. * Update descriptions and summaries in API spec * Utilise frontend assets from unit testing for Docker build steps * Fix tag for /api/user/* endpoints * Fix response schema for /api/user/info/2fa_method * Template and inject the session name during runtime into swagger-ui This change also factorises and renames index.go into template.go, this can now be generically utilised to template any file. * Fix integration tests * Add U2F endpoints * Change swagger directory to api This change is to more closely conform to the golang-standards project layout. * Add authentication for u2f endpoints * Modify u2f endpoint descriptions * Rename and fix u2f 2fa sign endpoints * Fix request body for /api/secondfactor/u2f/sign endpoint Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
36 lines
891 B
Bash
Executable File
36 lines
891 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
declare -A BUILDS=(["linux"]="amd64 arm32v7 arm64v8 coverage")
|
|
|
|
for BUILD_OS in "${!BUILDS[@]}"; do
|
|
for BUILD_ARCH in ${BUILDS[$BUILD_OS]}; do
|
|
cat << EOF
|
|
- label: ":docker: Build Image [${BUILD_ARCH}]"
|
|
command: "authelia-scripts docker build --arch=${BUILD_ARCH}"
|
|
agents:
|
|
build: "${BUILD_OS}-${BUILD_ARCH}"
|
|
artifact_paths:
|
|
- "authelia-image-${BUILD_ARCH}.tar.zst"
|
|
EOF
|
|
if [[ "${BUILD_ARCH}" != "coverage" ]]; then
|
|
cat << EOF
|
|
- "authelia-${BUILD_OS}-${BUILD_ARCH}.tar.gz"
|
|
- "authelia-${BUILD_OS}-${BUILD_ARCH}.tar.gz.sha256"
|
|
depends_on:
|
|
- "unit-test"
|
|
EOF
|
|
fi
|
|
cat << EOF
|
|
env:
|
|
ARCH: "${BUILD_ARCH}"
|
|
OS: "${BUILD_OS}"
|
|
key: "build-docker-${BUILD_OS}-${BUILD_ARCH}"
|
|
EOF
|
|
if [[ "${BUILD_ARCH}" == "coverage" ]]; then
|
|
cat << EOF
|
|
if: build.branch !~ /^(v[0-9]+\.[0-9]+\.[0-9]+)$\$/
|
|
EOF
|
|
fi
|
|
done
|
|
done |