mirror of
https://github.com/pi-hole/docker-pi-hole.git
synced 2024-12-06 19:27:10 +01:00
13798f0987
Build and Publish (development-v6) / build (3.19, linux/386) (push) Has been cancelled
Build and Publish (development-v6) / build (3.19, linux/amd64) (push) Has been cancelled
Build and Publish (development-v6) / build (3.19, linux/arm/v6) (push) Has been cancelled
Build and Publish (development-v6) / build (3.19, linux/arm/v7) (push) Has been cancelled
Build and Publish (development-v6) / build (3.19, linux/arm64) (push) Has been cancelled
Build and Publish (development-v6) / build (edge, linux/riscv64) (push) Has been cancelled
Check for merge conflicts / main (push) Has been cancelled
Build and Publish (development-v6) / merge-and-deploy (push) Has been cancelled
12 lines
335 B
Bash
Executable File
12 lines
335 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eux
|
|
|
|
docker buildx build ./src --build-arg TARGETPLATFORM="${TARGETPLATFORM}" --tag pihole:${GIT_TAG} --no-cache
|
|
docker images pihole:${GIT_TAG}
|
|
|
|
# auto-format the pytest code
|
|
python3 -m black ./test/tests/
|
|
|
|
# TODO: Add junitxml output and have something consume it
|
|
COLUMNS=120 py.test -vv -n auto ./test/tests/
|