mirror of
https://github.com/hectorm/docker-qemu-reactos
synced 2025-01-08 01:55:30 +00:00
Always pull images in CI
This commit is contained in:
parent
27e8c8da4d
commit
7fa7bbe095
@ -19,7 +19,7 @@ build:images:
|
||||
before_script:
|
||||
- 'apk add --no-cache coreutils git make xz'
|
||||
script:
|
||||
- 'make build-image save-image'
|
||||
- 'make IMAGE_BUILD_OPTS="--pull" build-image save-image'
|
||||
artifacts:
|
||||
expire_in: '1 day'
|
||||
paths:
|
||||
|
4
Makefile
4
Makefile
@ -20,6 +20,8 @@ ifneq ($(wildcard $(VERSION_FILE)),)
|
||||
IMAGE_VERSION := $(shell cat '$(VERSION_FILE)')
|
||||
endif
|
||||
|
||||
IMAGE_BUILD_OPTS :=
|
||||
|
||||
IMAGE_TARBALL := $(DISTDIR)/$(IMAGE_PROJECT).txz
|
||||
|
||||
##################################################
|
||||
@ -35,7 +37,7 @@ all: save-image
|
||||
|
||||
.PHONY: build-image
|
||||
build-image:
|
||||
'$(DOCKER)' build \
|
||||
'$(DOCKER)' build $(IMAGE_BUILD_OPTS) \
|
||||
--tag '$(IMAGE_NAME):$(IMAGE_VERSION)' \
|
||||
--tag '$(IMAGE_NAME):latest' \
|
||||
--file '$(DOCKERFILE)' ./
|
||||
|
Loading…
Reference in New Issue
Block a user