need alpine testing repo for cargo deny

This commit is contained in:
Sebastian Hugentobler 2023-03-09 10:59:09 +01:00
parent d5af19b02a
commit e690f3ce91
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -2,14 +2,14 @@ pipeline:
check:
image: docker.io/rust:1.67-alpine3.17
commands:
- apk --no-cache add cargo-deny make
- apk --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing add cargo-deny make
- make check
release:
image: docker.io/rust:1.67-alpine3.17
when:
event: tag
commands:
- apk --no-cache add cargo-deny make
- apk --no-cache add --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing cargo-deny make
- make check
- make release
publish-docker-image: