image: gcc:10 stages: - build - test build: stage: build before_script: - apt-get update && apt-get install -y cmake libboost-dev script: - mkdir build - cd build - cmake .. - make artifacts: name: test paths: - build/src - build/lib - build/test - build/test_work_dir test: stage: test script: - cd build - ./test/horcrux_test