variables: DOCKER_IMAGE: "registry.example.com/bslk/repack-builder:latest"
build_windows: stage: build image: $DOCKER_IMAGE script: - cmake -B build_win -G "Visual Studio 16 2019" -A x64 - cmake --build build_win --config Release artifacts: paths: - build_win/Release/*.exe
test: stage: test image: $DOCKER_IMAGE script: - ctest --test-dir build_win --output-on-failure - ./run_perf_benchmarks.sh dependencies: - build_windows
If you're interested in writing a blog post on a related topic, here are some steps:
