Compare commits
1 Commits
05e1e51db7
...
dacaf8cdae
Author | SHA1 | Date |
---|---|---|
Lance Vick | dacaf8cdae |
6
Makefile
6
Makefile
|
@ -7,7 +7,7 @@ VERSION := development
|
||||||
export
|
export
|
||||||
|
|
||||||
## Use env vars from latest release when reproducing
|
## Use env vars from latest release when reproducing
|
||||||
ifdef REPRODUCE
|
ifeq ($(REPRODUCE),"TRUE")
|
||||||
include dist/release.env
|
include dist/release.env
|
||||||
export
|
export
|
||||||
endif
|
endif
|
||||||
|
@ -25,7 +25,7 @@ out/airgap.iso: Containerfile $(shell git ls-files rootfs)
|
||||||
docker build \
|
docker build \
|
||||||
--progress=plain \
|
--progress=plain \
|
||||||
--output type=local,dest=out \
|
--output type=local,dest=out \
|
||||||
--build-arg VERSION="$(VERSION)" \
|
--build-arg VERSION="$(or $(VERSION),"development")" \
|
||||||
--build-arg GIT_REF="$(GIT_REF)" \
|
--build-arg GIT_REF="$(GIT_REF)" \
|
||||||
--build-arg GIT_AUTHOR="$(GIT_AUTHOR)" \
|
--build-arg GIT_AUTHOR="$(GIT_AUTHOR)" \
|
||||||
--build-arg GIT_KEY="$(GIT_KEY)" \
|
--build-arg GIT_KEY="$(GIT_KEY)" \
|
||||||
|
@ -104,7 +104,7 @@ verify: | dist/manifest.txt
|
||||||
|
|
||||||
.PHONY: reproduce
|
.PHONY: reproduce
|
||||||
reproduce: clean | out
|
reproduce: clean | out
|
||||||
$(MAKE) REPRODUCE=true
|
$(MAKE)
|
||||||
diff -q out/manifest.txt dist/manifest.txt;
|
diff -q out/manifest.txt dist/manifest.txt;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
|
Binary file not shown.
|
@ -1,2 +1,2 @@
|
||||||
f03a244a512c21d3ded79a05922390df0d594987a2c95ac95618037b6bc7ddcd airgap.iso
|
f1dbd9cdd76a117dc03177dad773359d56379e95bdae67bc656117d0da2bf5bc airgap.iso
|
||||||
7e57287da48a6eba06fa8959bbedfc49a081a565a252099fec47c156c4e21954 release.env
|
985ad604d4cce9100424a86535f62a52c98b4869eb615bdf666ead9a9b751e8d release.env
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
VERSION=1.0.0rc1
|
VERSION=1.0.0rc1
|
||||||
GIT_REF=a2a3cce64c39439b0c0d6742e2fad7a092a9df56
|
GIT_REF=f0270a2862e7c3874407357145f6b77fb0580065
|
||||||
GIT_AUTHOR=Lance R. Vick
|
GIT_AUTHOR=Lance R. Vick
|
||||||
GIT_KEY=6B61ECD76088748C70590D55E90A401336C8AAA9
|
GIT_KEY=6B61ECD76088748C70590D55E90A401336C8AAA9
|
||||||
GIT_TIMESTAMP=2024-08-02 21:58:30 -0700
|
GIT_TIMESTAMP=2024-08-02 21:44:19 -0700
|
||||||
|
|
Loading…
Reference in New Issue