Compare commits
3 Commits
f8b2e87400
...
eb5c5e1612
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb5c5e1612 | ||
|
|
2e561f9dfd | ||
|
|
7388ec90c4 |
40
.drone.yml
40
.drone.yml
@ -1,40 +0,0 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build cpp-ubuntu
|
||||
image: docker
|
||||
commands:
|
||||
- docker build -t erki/cpp-ubuntu:latest -f cpp-ubuntu.Dockerfile .
|
||||
volumes:
|
||||
- name: docker_socket
|
||||
path: /var/run/docker.sock
|
||||
|
||||
- name: build jenkins-ubuntu
|
||||
image: docker
|
||||
commands:
|
||||
- docker build -t erki/jenkins-ubuntu:latest -f jenkins-ubuntu.Dockerfile .
|
||||
volumes:
|
||||
- name: docker_socket
|
||||
path: /var/run/docker.sock
|
||||
|
||||
- name: notify
|
||||
image: plugins/matrix
|
||||
settings:
|
||||
homeserver:
|
||||
from_secret: matrix_homeserver
|
||||
roomid:
|
||||
from_secret: matrix_roomid
|
||||
username:
|
||||
from_secret: matrix_username
|
||||
password:
|
||||
from_secret: matrix_password
|
||||
when:
|
||||
status:
|
||||
- failure
|
||||
|
||||
volumes:
|
||||
- name: docker_socket
|
||||
host:
|
||||
path: /var/run/docker.sock
|
||||
@ -1,8 +0,0 @@
|
||||
FROM ubuntu:20.04
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt-get update -y && apt-get install -y --no-install-recommends git build-essential cmake ninja-build python3 python3-pip
|
||||
RUN pip3 install --upgrade conan==1.42.1
|
||||
RUN conan profile new default --detect
|
||||
RUN conan profile update settings.compiler.libcxx=libstdc++11 default
|
||||
@ -1,4 +1,4 @@
|
||||
FROM fedora:39
|
||||
FROM fedora:40
|
||||
|
||||
RUN dnf groupinstall "Development Tools" "Development Libraries" -y
|
||||
RUN dnf install npm cmake ninja-build python3 python3-pip python3-sphinx gcc-c++ libasan libubsan -y
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
FROM erki/cpp-ubuntu:latest
|
||||
FROM erki/ubuntu-cpp:latest
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
|
||||
7
ubuntu-cpp.Dockerfile
Normal file
7
ubuntu-cpp.Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt-get update -y && apt-get install -y --no-install-recommends git build-essential cmake ninja-build python3 pipx python3-sphinx
|
||||
RUN pipx ensurepath
|
||||
RUN pipx install breathe
|
||||
Loading…
x
Reference in New Issue
Block a user