Skip to content
Snippets Groups Projects
.gitlab-ci.yml 434 B
Newer Older
image: docker.km3net.de/base/centos-full:7
build:
    script:
        - yum -y install autoconf automake
        - autoreconf
        - autoconf
        - automake
        - ./configure
        - make clean && make

build-sl5:
    image: docker.km3net.de/base/sl-full:5
    script:
        - yum -y install autoconf automake
        - autoreconf
        - autoconf
        - automake
        - ./configure
        - make clean && make