Switch to plain progress
Some checks failed
Test build / build (push) Failing after 9m42s

This commit is contained in:
Adam Štrauch 2025-01-20 00:20:54 +01:00
parent f85560426b
commit 9b772ff87b
Signed by: cx
GPG key ID: 7262DAFE292BCE20

View file

@ -22,7 +22,7 @@ tasks:
build: build:
cmds: cmds:
- docker pull {{ .BASEIMAGE }} - docker pull {{ .BASEIMAGE }}
- docker build -t {{ .REPO }}:dev . - docker build --progress plain -t {{ .REPO }}:dev .
- docker tag {{ .REPO }}:dev {{ .REPO }}:{{ .VERSION }} - docker tag {{ .REPO }}:dev {{ .REPO }}:{{ .VERSION }}
- echo "JSON for admin:" - echo "JSON for admin:"
- python3 generate_versions.py - python3 generate_versions.py
@ -34,7 +34,7 @@ tasks:
squashed: squashed:
cmds: cmds:
- docker pull {{ .BASEIMAGE }} - docker pull {{ .BASEIMAGE }}
- docker build --squash -t {{ .REPO }}:dev-squashed . - docker build --progress plain --squash -t {{ .REPO }}:dev-squashed .
- docker tag {{ .REPO }}:dev-squashed {{ .REPO }}:{{ .VERSION }} - docker tag {{ .REPO }}:dev-squashed {{ .REPO }}:{{ .VERSION }}
- echo "JSON for admin:" - echo "JSON for admin:"
- python3 generate_versions.py - python3 generate_versions.py