runtime/Taskfile.yml
Adam Štrauch ed6ea70fa5
Some checks failed
Test build / build (push) Failing after 35m53s
A lot of new stuff
2024-08-13 19:59:45 +02:00

46 lines
887 B
YAML

# https://taskfile.dev
version: '3'
vars:
REPO: harbor.hq.rosti.cz/rosti/runtime
VERSION: 2024.09-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