Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.16 KiB
Newer Older
Benny Baumann's avatar
Benny Baumann committed
stages:
    - prebuild
    - build
    - testing
    - deploy

Benny Baumann's avatar
Benny Baumann committed
    stage: prebuild
Benny Baumann's avatar
Benny Baumann committed
    script:
        - gcc --version
        - g++ --version
    tags:
        - rmrf
        - rmrfcode
        - freebsd

prebuild:deb:
    stage: prebuild
    script:
        - gcc --version
        - g++ --version
    tags:
        - rmrf
        - rmrfcode
        - debian
Benny Baumann's avatar
Benny Baumann committed

build:bsd:
    stage: build
    dependencies:
Benny Baumann's avatar
Benny Baumann committed
    script:
        - gmake
    artifacts:
        paths:
            - bin
    tags:
        - rmrf
        - rmrfcode
        - freebsd

build:deb:
    stage: build
    dependencies:
Benny Baumann's avatar
Benny Baumann committed
    script:
        - make
        - dpkg-buildpackage -b -us -uc
        - mkdir -p deb && cp -t deb ../rmrf*.deb ../rmrf*.changes ../rmrf*.buildinfo
Benny Baumann's avatar
Benny Baumann committed
    artifacts:
        paths:
            - bin
Benny Baumann's avatar
Benny Baumann committed
    tags:
        - rmrf
        - rmrfcode
        - debian

test:bsd:
Benny Baumann's avatar
Benny Baumann committed
    stage: testing
Benny Baumann's avatar
Benny Baumann committed
    dependencies:
        - build:bsd
    script:
        - echo Successfully tested.

test:deb:
Benny Baumann's avatar
Benny Baumann committed
    stage: testing
Benny Baumann's avatar
Benny Baumann committed
    dependencies:
        - build:deb
    script:
        - make lintian
Benny Baumann's avatar
Benny Baumann committed
        - echo Successfully tested.