mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
92ec00d7c5
* feat: builds with gox and buildx This change builds all of Authelia respective binaries in parallel within a single step and distributes as necessary to subsequent steps, we now also build and distribute for the following OS/Architecture: freebsd/amd64. Our CI/CD pipeline now also utilises docker buildx as a default for builds and pushes. * refactor: clean up docker helper * Remove `authelia-scripts docker push-image` command as all pushes will be performed with buildx and manifests * Rename the --arch flag to --container * Add Dockerfile.dev for users that want to build an Authelia container from source without utilising suites * Set Dockerfile.dev as default for `authelia-scripts docker build` command * refactor: variant -> container
27 lines
1.1 KiB
Bash
Executable File
27 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GITTAG=$(git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')
|
|
|
|
if [[ "${BUILDKITE_TAG}" == "" ]]; then
|
|
VERSION="pkgver=${GITTAG}"
|
|
else
|
|
VERSION="pkgver=${BUILDKITE_TAG//v/}"
|
|
fi
|
|
|
|
wget https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=authelia-bin -qO PKGBUILD && \
|
|
sed -i -e '/^pkgname=/c pkgname=authelia' -e "/pkgver=/c $VERSION" -e '10,14d' \
|
|
-e 's/source_x86_64.*/source_x86_64=("authelia-linux-amd64.tar.gz")/' \
|
|
-e 's/source_aarch64.*/source_aarch64=("authelia-linux-arm64.tar.gz")/' \
|
|
-e 's/source_armv7h.*/source_armv7h=("authelia-linux-arm.tar.gz")/' \
|
|
-e 's/sha256sums_x86_64.*/sha256sums_x86_64=("SKIP")/' \
|
|
-e 's/sha256sums_aarch64.*/sha256sums_aarch64=("SKIP")/' \
|
|
-e 's/sha256sums_armv7h.*/sha256sums_armv7h=("SKIP")/' PKGBUILD
|
|
|
|
if [[ "${PACKAGE}" == "amd64" ]]; then
|
|
docker run --rm -v $PWD:/build authelia/aurpackager bash -c "cd /build && makedeb"
|
|
elif [[ "${PACKAGE}" == "armhf" ]]; then
|
|
docker run --rm -v $PWD:/build authelia/debpackager:armhf bash -c "cd /build && makedeb"
|
|
else
|
|
docker run --rm -v $PWD:/build authelia/debpackager:arm64 bash -c "cd /build && makedeb"
|
|
fi
|