diff --git a/.builds/arch.yaml b/.builds/arch.yaml deleted file mode 100644 index 17c9d4c..0000000 --- a/.builds/arch.yaml +++ /dev/null @@ -1,9 +0,0 @@ -image: archlinux -packages: - - dotnet-sdk-6.0 -sources: - - https://git.sr.ht/~cloutier/bird.makeup -tasks: - - test: | - cd bird.makeup/src - dotnet test diff --git a/.builds/arch.yml b/.builds/arch.yml new file mode 100644 index 0000000..c0930a0 --- /dev/null +++ b/.builds/arch.yml @@ -0,0 +1,12 @@ +image: archlinux +packages: + - dotnet-sdk-6.0 + - docker +sources: + - https://git.sr.ht/~cloutier/bird.makeup +tasks: + - test: | + sudo systemctl start docker + sudo docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=birdsitelive -e POSTGRES_USER=birdsitelive -e POSTGRES_DB=birdsitelive postgres:9 + cd bird.makeup/src + dotnet test