added a new step for building with clang 15 in .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
hyung-hwan 2023-06-01 00:36:34 +09:00
parent a5d96cc6eb
commit ab777976bc

View File

@ -9,3 +9,14 @@ steps:
- mkdir bld-gcc13 && cd bld-gcc13 - mkdir bld-gcc13 && cd bld-gcc13
- ../configure - ../configure
- make && make check - 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