hcl/.drone.yml
hyung-hwan ab777976bc
Some checks failed
continuous-integration/drone/push Build is failing
added a new step for building with clang 15 in .drone.yml
2023-06-01 00:36:34 +09:00

23 lines
408 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
- make && make check
depends_on:
- clone