-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #9 - update to 5.0.0 / chrome 77
- Loading branch information
Showing
4 changed files
with
4 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,8 @@ | ||
CACHE ?= --no-cache=1 | ||
VERSION ?= v5.0.0 | ||
FULLVERSION ?= v5.0.0 | ||
archs ?= arm32v7 amd64 | ||
.PHONY: all build publish latest | ||
all: build publish latest | ||
qemu-arm-static: | ||
cp /usr/bin/qemu-arm-static . | ||
build: qemu-arm-static | ||
$(foreach arch,$(archs), \ | ||
docker build -t femtopixel/google-lighthouse:${VERSION}-$(arch) -f Dockerfile.$(arch) --build-arg VERSION=${VERSION}-$(arch) ${CACHE} .;\ | ||
) | ||
all: build publish | ||
build: | ||
docker build -t femtopixel/google-lighthouse:${VERSION} -t femtopixel/google-lighthouse --build-arg VERSION=${VERSION} ${CACHE} . | ||
publish: | ||
docker push femtopixel/google-lighthouse | ||
cat manifest.yml | sed "s/\$$VERSION/${VERSION}/g" > manifest2.yaml | ||
cat manifest2.yaml | sed "s/\$$FULLVERSION/${FULLVERSION}/g" > manifest.yaml | ||
manifest-tool push from-spec manifest.yaml | ||
latest: build | ||
FULLVERSION=latest VERSION=${VERSION} make publish |
This file was deleted.
Oops, something went wrong.