forked from lix-project/hydra
foreman: allow using substitutes by default
This commit is contained in:
parent
42d09aace1
commit
128aa0afc9
|
@ -3,5 +3,4 @@
|
|||
# wait for hydra-server to listen
|
||||
while ! nc -z localhost 63333; do sleep 1; done
|
||||
|
||||
touch .hydra-data/hydra.conf
|
||||
HYDRA_CONFIG=$(pwd)/.hydra-data/hydra.conf exec hydra-evaluator
|
||||
|
|
|
@ -8,5 +8,11 @@ createdb -h $(pwd)/.hydra-data/postgres -p 64444 hydra
|
|||
hydra-init
|
||||
hydra-create-user alice --password foobar --role admin
|
||||
|
||||
touch .hydra-data/hydra.conf
|
||||
if [ ! -f ./.hydra-data/hydra.conf ]; then
|
||||
echo "Creating a default hydra.conf"
|
||||
cat << EOF > .hydra-data/hydra.conf
|
||||
# test-time instances likely don't want to bootstrap nixpkgs from scratch
|
||||
use-substitutes = true
|
||||
EOF
|
||||
fi
|
||||
HYDRA_CONFIG=$(pwd)/.hydra-data/hydra.conf exec hydra-dev-server --port 63333
|
||||
|
|
|
@ -3,5 +3,4 @@
|
|||
# wait for hydra-server to listen
|
||||
while ! nc -z localhost 63333; do sleep 1; done
|
||||
|
||||
touch .hydra-data/hydra.conf
|
||||
HYDRA_CONFIG=$(pwd)/.hydra-data/hydra.conf exec hydra-notify
|
||||
|
|
|
@ -3,5 +3,4 @@
|
|||
# wait until hydra is listening on port 63333
|
||||
while ! nc -z localhost 63333; do sleep 1; done
|
||||
|
||||
touch .hydra-data/hydra.conf
|
||||
HYDRA_CONFIG=$(pwd)/.hydra-data/hydra.conf exec hydra-queue-runner
|
||||
|
|
Loading…
Reference in a new issue