image: dorie/dune-env:2.4 variables: DUNE_CONTROL_PATH: /opt/dune:$CI_PROJECT_DIR before_script: - cd /opt/dune stages: - build - test build_job: script: - ./dune-common/bin/dunecontrol --only=dorie all - ./dune-common/bin/dunecontrol --only=dorie make install stage: build artifacts: untracked: true paths: - /opt/dune/dune-python/ test_job: script: - ARGS="--output-on-failure" ./dune-common/bin/dunecontrol --only=dorie make test stage: test dependencies: - build_job