hcl/.drone.yml
hyung-hwan bf989e848b
All checks were successful
continuous-integration/drone/push Build is passing
updated .drone.yml with CC=clang for configure
2023-06-01 00:47:44 +09:00

23 lines
417 B
YAML

kind: pipeline
type: docker
name: hcl
steps:
- name: build-with-gcc13
image: docker.io/gcc:13.1.0
commands:
- mkdir bld-gcc13 && cd bld-gcc13
- ../configure
- make && make check
depends_on:
- clone
- name: build-with-clang15
image: docker.io/silkeh/clang:15
commands:
- mkdir bld-clang15 && cd bld-clang15
- ../configure CC=clang
- make && make check
depends_on:
- clone