ctlseqs/.drone.yml

25 lines
715 B
YAML
Raw Permalink Normal View History

2021-01-23 19:41:56 +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
image: pureos/byzantium
2021-01-23 19:41:56 +00:00
commands:
2021-02-05 07:42:26 +00:00
- apt -y update
2021-10-30 15:00:22 +00:00
- apt -y install build-essential autoconf automake libtool
- apt -y install autoconf-archive dejagnu texinfo
2021-01-23 19:41:56 +00:00
- autoreconf --install
2021-10-30 15:00:22 +00:00
- mkdir build && cd build
- ../configure CFLAGS='-O0 -g -std=c99 -Wall -Wextra -Wpedantic -Wshadow'
2021-01-23 19:41:56 +00:00
- make
- make check