-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/christian/ci-updates'
* topic/christian/ci-updates: CI updates
- Loading branch information
Showing
7 changed files
with
67 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.50-27 | ||
0.50-29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM debian:12 | ||
|
||
# A version field to invalidate Cirrus's build cache when needed, as suggested in | ||
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822 | ||
ENV DOCKERFILE_VERSION 20231213 | ||
|
||
ENV DEBIAN_FRONTEND="noninteractive" TZ="America/Los_Angeles" | ||
|
||
RUN apt-get update && apt-get -y install \ | ||
cmake \ | ||
g++ \ | ||
git \ | ||
libpcap-dev \ | ||
make \ | ||
python3 \ | ||
python3-pip\ | ||
&& apt autoclean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip3 install --break-system-packages btest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
ci/opensuse-leap-15.4/Dockerfile → ci/opensuse-leap-15.5/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
FROM opensuse/leap:15.4 | ||
FROM opensuse/leap:15.5 | ||
|
||
# A version field to invalidate Cirrus's build cache when needed, as suggested in | ||
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822 | ||
ENV DOCKERFILE_VERSION 20230823 | ||
ENV DOCKERFILE_VERSION 20231213 | ||
|
||
RUN zypper refresh \ | ||
&& zypper in -y \ | ||
cmake \ | ||
gcc10 \ | ||
gcc10-c++ \ | ||
gcc12 \ | ||
gcc12-c++ \ | ||
git \ | ||
gzip \ | ||
libpcap-devel \ | ||
make \ | ||
python39 \ | ||
python39-devel \ | ||
python39-pip \ | ||
python311 \ | ||
python311-devel \ | ||
python311-pip \ | ||
tar \ | ||
which \ | ||
&& rm -rf /var/cache/zypp | ||
|
||
RUN update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.9 100 | ||
RUN update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.11 100 | ||
|
||
RUN pip3 install btest | ||
|
||
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-10 100 | ||
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-10 100 | ||
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-12 100 | ||
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-12 100 |