This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/scripts/ci_prepare.sh

11 lines
308 B
Bash
Raw Normal View History

#!/bin/bash -xe
2021-08-30 18:21:15 +00:00
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
2021-08-30 18:21:15 +00:00
pipenv run python -m scripts.generate_ci_config
npm install -g pyright@1.1.136