Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ opensuse-15_task:

freebsd_task:
freebsd_instance:
image_family: freebsd-14-2
image_family: freebsd-14-3
install_script: pkg install -y git ninja patchelf
<< : *test

Expand Down
2 changes: 1 addition & 1 deletion ci/alpine-3.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20250212
FROM alpine:3
RUN apk add --no-cache python3-dev py3-pip build-base ninja-is-really-ninja git patchelf
RUN apk add --no-cache python3-dev py3-pip build-base ninja-is-really-ninja git patchelf cmake
2 changes: 1 addition & 1 deletion ci/archlinux.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20250127
FROM archlinux:latest
RUN pacman -Syu --noconfirm && pacman -S --noconfirm python python-pip gcc ninja git patchelf
RUN pacman -Syu --noconfirm && pacman -S --noconfirm python python-pip gcc ninja git patchelf cmake
2 changes: 1 addition & 1 deletion ci/debian-11.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20250212
FROM debian:bullseye
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv cmake && rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion ci/debian-12.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20250127
FROM debian:bookworm
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv cmake && rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion ci/debian-unstable.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20230816
FROM debian:unstable
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv cmake g++ && rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion ci/fedora-41.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20250127
FROM fedora:41
RUN dnf -y update && dnf -y install python3-devel python3-pip gcc ninja-build git patchelf && dnf clean all
RUN dnf -y update && dnf -y install python3-devel python3-pip gcc gcc-c++ ninja-build git patchelf cmake && dnf clean all
2 changes: 1 addition & 1 deletion ci/miniconda.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20240204
FROM continuumio/miniconda3
RUN apt-get update && apt-get install -y gcc ninja-build git patchelf && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y gcc g++ ninja-build git patchelf cmake && rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion ci/opensuse-15.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# 20240817
FROM opensuse/leap:latest
RUN zypper --non-interactive install python311 python311-pip python311-devel gcc ninja git patchelf && zypper clean --all && ln -s python3.11 /usr/bin/python3
RUN zypper --non-interactive install python311 python311-pip python311-devel gcc gcc-c++ ninja git patchelf cmake && zypper clean --all && ln -fs python3.11 /usr/bin/python3
Loading