--- stages: - build - test .mbusd_job_template: &mbusd_job_template # Hidden key that defines an anchor image: debian:stable artifacts: # create an archive with a name of the current stage and branch name name: "${CI_BUILD_STAGE}_${CI_BUILD_REF_NAME}" expire_in: 1 day paths: - output.dir/mbusd - output.dir/mbusd.8 - conf/mbusd.conf.example - output.dir/mbusd@.service - output.dir/mbusd*.deb - output.dir/mbusd*.rpm build:deb_armhf: <<: *mbusd_job_template stage: build before_script: - apt update -qq - apt install -y -qq build-essential pkg-config cmake gcc-arm-linux-gnueabihf script: - mkdir output.dir/ - cd output.dir - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=../arm_linux_gnueabihf.cmake ../ - make package build:deb_x86: <<: *mbusd_job_template stage: build before_script: - apt update -qq - apt install -y -qq build-essential pkg-config cmake script: - mkdir output.dir/ - cd output.dir - cmake -D CMAKE_BUILD_TYPE=Debug ../ - make package test_x86: stage: test image: debian:stable #https://forum.gitlab.com/t/testing-copy-yaml-file-to-build-folder/8309 before_script: - apt update -qq - apt install -y -qq build-essential pkg-config cmake - apt install -y -qq python-dev python-pip python-setuptools socat - python -m pip install pymodbus service_identity dependencies: - build:deb_x86 script: - mkdir -p output.dir/ - cd output.dir - cmake -DTESTS=True ../ - make VERBOSE=1 # execute all tests - ./test_*