aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-10-10 16:22:17 +0200
committerMax Audron <audron@cocaine.farm>2021-10-10 16:25:08 +0200
commit477841044986c51d9dcc9d97bc9b5fd9d26e2da3 (patch)
tree22f0ba728269b2a220bc9ce6a26bfe37b094391a
parenthappy now asmodean? (diff)
add openssl-dev as dep to build jobs
-rw-r--r--.gitlab-ci.yml12
-rw-r--r--Containerfile3
2 files changed, 14 insertions, 1 deletions
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