Bump to 1.18 release, add 1.19 tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
DataHoarder 2023-01-28 23:57:23 +01:00
parent be3e29d3c7
commit 1f8ca3f5b8
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -1,14 +1,25 @@
---
kind: pipeline
type: docker
name: default
name: default-1.18
steps:
- name: test
image: golang:1.18rc1-bullseye
image: golang:1.18-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
---
kind: pipeline
type: docker
name: default-1.19
steps:
- name: test
image: golang:1.19-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
...