Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.15 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
    artifacts:
        paths:
            - bin
            - ../rmrf*.deb
            - ../rmrf*.ddeb
            - ../rmrf*.changes
            - ../rmrf*.buildinfo
    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:
        - echo Successfully tested.