Files
hcl/.drone.yml
hyung-hwan f9970e1bb7
Some checks failed
continuous-integration/drone/push Build is failing
updated .drone.yml
2025-08-05 18:22:38 +09:00

25 lines
565 B
YAML

kind: pipeline
type: docker
name: hcl
steps:
- name: build-with-gcc13
image: docker.io/gcc:13.1.0
commands:
- find . -exec touch -r {} +
- mkdir bld-gcc13 && cd bld-gcc13
- ../configure
- make && { make check || { cat t/test-suite.log; exit 1; } }
depends_on:
- clone
- name: build-with-clang15
image: docker.io/silkeh/clang:15
commands:
- find . -exec touch -r {} +
- mkdir bld-clang15 && cd bld-clang15
- ../configure CC=clang
- make && { make check || { cat t/test-suite.log; exit 1; } }
depends_on:
- clone