ci: switch to debian for build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Glenn Y. Rolland 2023-12-27 13:07:35 +01:00
parent 465d5a96aa
commit 8929f780ed

View file

@ -5,12 +5,12 @@ name: default
steps: steps:
- name: build - name: build
image: alpine:latest image: debian:12
environment: environment:
PACKAGE_BASENAME: igmpgen_linux_amd64 PACKAGE_BASENAME: igmpgen_linux_amd64
commands: commands:
- apk update - apt-get update
- apk add cmake gcc g++ libnet libnet-dev debian-devscripts rpm make - apt-get install -y cmake gcc g++ libnet1 libnet-dev rpm make
- make build - make build
- make package - make package
- mkdir -p /_cache/bin /_cache/packages - mkdir -p /_cache/bin /_cache/packages