runtime/Taskfile.yml
Adam Štrauch 10612a9b26
Some checks failed
Test build / build (push) Failing after 19m41s
Bump up everything for 2024.10-1
2024-10-08 11:13:35 +02:00

46 lines
887 B
YAML

# https://taskfile.dev
version: '3'
vars:
REPO: harbor.hq.rosti.cz/rosti/runtime
VERSION: 2024.10-1
BASEIMAGE: debian:bookworm
tasks:
default:
deps:
- build
pipeline:
cmds:
- task: build
- task: test
- task: push
build:
cmds:
- docker pull {{ .BASEIMAGE }}
- docker build -t {{ .REPO }}:dev .
- docker tag {{ .REPO }}:dev {{ .REPO }}:{{ .VERSION }}
- echo "JSON for admin:"
- python3 generate_versions.py
test:
cmds:
- bash ./tests2.sh {{ .REPO }}:{{ .VERSION }}
squashed:
cmds:
- docker pull {{ .BASEIMAGE }}
- docker build --squash -t {{ .REPO }}:dev-squashed .
- docker tag {{ .REPO }}:dev-squashed {{ .REPO }}:{{ .VERSION }}
- echo "JSON for admin:"
- python3 generate_versions.py
push:
cmds:
- docker push {{ .REPO }}:{{ .VERSION }}
# deps:
# - squashed