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

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

parent b793b455
No related branches found
No related tags found
No related merge requests found
Pipeline #34210 failed
...@@ -185,6 +185,26 @@ build_release_tag: ...@@ -185,6 +185,26 @@ build_release_tag:
IMAGE_TAG: "$CI_COMMIT_TAG" IMAGE_TAG: "$CI_COMMIT_TAG"
PODMAN_BUILD_OPTIONS: "--platform linux/amd64" PODMAN_BUILD_OPTIONS: "--platform linux/amd64"
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: tests:
stage: tests stage: tests
image: rust:1-bullseye 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