From 477841044986c51d9dcc9d97bc9b5fd9d26e2da3 Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sun, 10 Oct 2021 16:22:17 +0200 Subject: add openssl-dev as dep to build jobs --- .gitlab-ci.yml | 12 ++++++++++++ Containerfile | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 93f849d..914b144 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,18 @@ include: rules: - if: $CI_COMMIT_TAG +test: + before_script: + - apk add openssl-dev + +coverage: + before_script: + - apk add openssl-dev + +build: + before_script: + - apk add openssl-dev + workflow: rules: - if: $CI_MERGE_REQUEST_IID diff --git a/Containerfile b/Containerfile index 80b9266..d3ee21e 100644 --- a/Containerfile +++ b/Containerfile @@ -2,7 +2,8 @@ # Cargo Build Stage # ------------------------------------------------------------------------------ -FROM docker.io/lukemathwalker/cargo-chef:latest-rust-1.54.0-alpine AS chef +FROM kube.cat/cocainefarm/rust:1.55.0 AS chef +RUN apk add openssl-dev WORKDIR /work FROM chef AS planner -- cgit v1.2.3