oci/ci/debian-clang-nightly/justfile

24 lines
483 B
Makefile

#!/usr/bin/env -S just --justfile
set fallback := true
import '../../root.just'
[private]
default:
@just help
# show this help
help:
@just --list
# build clang-nightly
build *args:
@echo 'Building debian-clang-nightly image...'
podman build \
--tag=debian-clang-nightly:19 \
{{ if podman_minver == "true" { "--pull=never" } else { "" } }} \
--file=Containerfile \
{{ args }}
# vi: set ft=just ts=4 sw=4 sts=-1 nosr et si tw=0 fdm=manual: