mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d123fe4785
* [CI] Add Codecov support * [CI] Capture backend coverage from integration tests * [CI] Remove unnecessary artifacts for coverage build * [CI] Only run coverage elements where necessary * [CI] Simplify post-command hook * Fix yarn dependencies and collect coverage * [CI] Include cmd/authelia/ path in coverage * [CI] Exclude internal/suites/ in coverage Closes #1061.
34 lines
856 B
Bash
Executable File
34 lines
856 B
Bash
Executable File
#!/bin/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"
|
|
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 !~ /^(master)|(v[0-9]+\.[0-9]+\.[0-9]+)$\$/
|
|
EOF
|
|
fi
|
|
done
|
|
done |