Initial commit
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
commit
e22332069a
@ -0,0 +1,20 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: build
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker-build
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
context: .
|
||||||
|
registry: hub.codefirst.iut.uca.fr
|
||||||
|
repo: hub.codefirst.iut.uca.fr/clfreville2/oki-build-image
|
||||||
|
username:
|
||||||
|
from_secret: SECRET_REGISTRY_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: SECRET_REGISTRY_PASSWORD
|
@ -0,0 +1,5 @@
|
|||||||
|
FROM gcc:12
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get -y --no-install-recommends install nlohmann-json3-dev libcurl4-openssl-dev libminizip-dev doctest-dev gcovr \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
RUN wget -q 'https://raw.githubusercontent.com/marzer/tomlplusplus/v3.2.0/toml.hpp' -O /usr/local/include/toml.hpp
|
Loading…
Reference in new issue