fm10k-dump/.drone.yml
DataHoarder b7d7809437
All checks were successful
continuous-integration/drone/push Build is passing
Added clang support
2020-12-19 22:11:03 +01:00

28 lines
630 B
YAML

---
kind: pipeline
type: docker
name: build-gcc
steps:
- name: build
image: ubuntu:20.04
commands:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y gcc make
- make clean
- make CC=gcc CFLAGS="-Wall -Werror -Wno-unknown-warning-option -Wno-packed-bitfield-compat"
---
kind: pipeline
type: docker
name: build-clang
steps:
- name: build
image: ubuntu:20.04
commands:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y clang make
- make clean
- make CC=clang CFLAGS="-Wall -Werror -Wno-unknown-warning-option -Wno-packed-bitfield-compat"
...