Skip to content
Snippets Groups Projects
Commit 68a5a3ef authored by Cédric Moreau's avatar Cédric Moreau
Browse files

fix(#134): add `gdev_build` job on build phase

parent 2ddae276
Branches
Tags v3.3.3
1 merge request!194Resolve "Add a ĞTest build job on build stage"
......@@ -200,6 +200,26 @@ run_benchmarks:
IMAGE_TAG: "debug-sha-$CI_COMMIT_SHORT_SHA"
PODMAN_BUILD_OPTIONS: "--target build --build-arg benchmarks=1"
gdev_build:
stage: build
image: rust:1-bullseye
rules:
- if: $CI_COMMIT_REF_NAME =~ /^wip*$/
when: manual
- if: $CI_COMMIT_TAG
when: never
- if: $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
when: never
- if: '$CI_MERGE_REQUEST_ID || $CI_COMMIT_BRANCH == "master"'
when: manual
- when: always
variables:
DEBIAN_FRONTEND: noninteractive
script:
- apt-get update
- apt-get install -y clang cmake protobuf-compiler
- cargo build --no-default-features --features gtest
tests:
stage: tests
image: rust:1-bullseye
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment