u6a/.drone.yml

24 lines
654 B
YAML
Raw Normal View History

2021-01-26 07:07:14 +00:00
#
# Copyright (C) 2021 CismonX <admin@cismon.net>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty, provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
#
kind: pipeline
type: docker
name: default
steps:
- name: build
2022-02-14 15:40:11 +00:00
image: pureos/byzantium
2021-01-26 07:07:14 +00:00
commands:
2022-02-14 15:40:11 +00:00
- apt -y update
- apt -y install wget build-essential autoconf automake dejagnu
2021-01-26 07:07:14 +00:00
- autoreconf --install
- ./configure CFLAGS='-O0 -g -std=c99 -Wall -Wextra -Wpedantic --coverage'
- make
- make check
- gcov src/*.c