mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* consolidate and streamline build * fix workflow syntax * fix workflow syntax * fix workflow syntax * fix workflow syntax * fix build scripts * only build platform-specific system images * fix build script * more build fixes * fix * fix compat build for x86 * wat * checkout * Prevent rebuild of compiled artifacts * Update startos-iso.yaml * Update startos-iso.yaml * fix raspi build * handle missing platform better * reduce arm vcpus * remove arch and platform from fe config, add to patch db --------- Co-authored-by: Matt Hill <mattnine@protonmail.com>
23 lines
694 B
Bash
Executable File
23 lines
694 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TMP_DIR=$(mktemp -d)
|
|
mkdir $TMP_DIR/pgdata
|
|
docker run -d --rm --name=tmp_postgres -e POSTGRES_PASSWORD=password -v $TMP_DIR/pgdata:/var/lib/postgresql/data postgres
|
|
|
|
(
|
|
set -e
|
|
ctr=0
|
|
while ! docker exec tmp_postgres psql -U postgres || [ $ctr -lt 5 ]; do
|
|
ctr=$[ctr + 1]
|
|
sleep 1;
|
|
done
|
|
|
|
PG_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' tmp_postgres)
|
|
|
|
DATABASE_URL=postgres://postgres:password@$PG_IP/postgres cargo sqlx migrate run
|
|
DATABASE_URL=postgres://postgres:password@$PG_IP/postgres PLATFORM=$(uname -m) cargo sqlx prepare -- --lib --profile=test
|
|
)
|
|
|
|
docker stop tmp_postgres
|
|
sudo rm -rf $TMP_DIR
|