mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
2476475174
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
10 lines
277 B
Bash
Executable File
10 lines
277 B
Bash
Executable File
#!/bin/bash -xe
|
|
docker-compose -f scripts/ci.docker-compose.yml up -d
|
|
sudo apt update
|
|
sudo apt install -y libxmlsec1-dev pkg-config
|
|
sudo pip install -U wheel pipenv
|
|
if [[ "$INSTALL" != "true" ]]; then
|
|
pipenv install --dev
|
|
fi
|
|
pipenv run python -m scripts.generate_ci_config
|