mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a3e84769b5
* feat(web): replace cra with vite
* fix: add istanbul
* fix: add jest
* fix: inject env vars
* fix: replicate cra output directories
* fix: post-frontend build for go templating
* fix: dynamic publicpath
* fix(web): import resolution with aliases for .module.css files
* refactor(server): baseurl var
* refactor(web): drop babel-jest for esbuild-jest
* refactor(web): add inline sourcemap for coverage bundle
* build(deps): update web deps
* build(deps): downgrade vite-plugin-istanbul to 2.2.0
98bf77dbaa
is a breaking change that means production mode builds can no longer be instrumented.
* refactor(web): match frontend name and version
* refactor(web): drop cra readme
38 lines
1.3 KiB
Bash
Executable File
38 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set +u
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":service_dog: Linting" ]]; then
|
|
cd web && pnpm install && cd ../
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":docker: Build Image [coverage]" ]]; then
|
|
cp -R /buildkite/.pnpm-store .
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":debian: Build Package" ]]; then
|
|
buildkite-agent artifact download "authelia-linux-${ARCH}.tar.gz" .
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":selenium:" ]]; then
|
|
DEFAULT_ARCH=coverage
|
|
echo "--- :docker: Extract, load and tag build container"
|
|
buildkite-agent artifact download "authelia-image-${DEFAULT_ARCH}*" .
|
|
zstdcat "authelia-image-${DEFAULT_ARCH}.tar.zst" | docker load
|
|
docker tag authelia/authelia authelia:dist
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":docker: Deploy Manifest" ]]; then
|
|
echo "--- :go: :react: :swagger: Extract pre-built binary"
|
|
buildkite-agent artifact download "authelia-linux-*-musl.tar.gz" .
|
|
for archive in authelia-linux-*-musl.tar.gz; do tar xzf ${archive} --wildcards "authelia-linux-*"; done
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":github: Deploy Artifacts" ]]; then
|
|
buildkite-agent artifact download "authelia-*.tar.gz*" .
|
|
buildkite-agent artifact download "authelia_*.deb*" .
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":debian: :fedora: :ubuntu: Deploy APT" ]]; then
|
|
buildkite-agent artifact download "authelia_*.deb" .
|
|
fi |