1
Fork 0
convert docker images to rootfs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
undocker/.build.yml

19 lines
548 B

image: alpine/edge
packages:
- go
- git
- make
- shellcheck
sources:
- https://git.sr.ht/~motiejus/undocker
tasks:
- setup: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- built-test-lint: |
make -C undocker -O -j$(nproc) undocker coverage.html lint
- usage: |
# like 'grep -q', but prints output too.
# | tee /dev/stderr doesn't work on sourcehut workers; permission denied.
./undocker/undocker |& awk 'BEGIN{c=1};/Built with /{c=0};{print};END{exit c}'
artifacts:
- undocker/coverage.html