forked from flux-framework/flux-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The bionic LTS release of ubuntu is falling out of standard support. Update all references to bionic from the leaving LTS release to the current LTS release. Builds of the fluxrm/testenv for arm64 and amd64 are already on dockerhub based on these changes.
- Loading branch information
Showing
7 changed files
with
34 additions
and
35 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
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,4 +1,4 @@ | ||
FROM ubuntu:bionic | ||
FROM ubuntu:jammy | ||
|
||
LABEL maintainer="Tom Scogland <[email protected]>" | ||
|
||
|
@@ -41,10 +41,10 @@ RUN apt-get update \ | |
automake \ | ||
make \ | ||
cmake \ | ||
clang-6.0 \ | ||
clang-tidy \ | ||
gcc-8 \ | ||
g++-8 \ | ||
clang-15 \ | ||
clang-tools-15 \ | ||
gcc-12 \ | ||
g++-12 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Python | ||
|
@@ -56,14 +56,13 @@ RUN apt-get update \ | |
&& apt-get -qq install -y --no-install-recommends \ | ||
libffi-dev \ | ||
python3-dev \ | ||
python3.7-dev \ | ||
python3.8-dev \ | ||
python3.11-dev \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
python3-wheel \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN for PY in python3.6 python3.7 python3.8 ; do \ | ||
RUN for PY in python3.10 python3.11 ; do \ | ||
sudo $PY -m pip install --upgrade --ignore-installed \ | ||
"markupsafe==2.0.0" \ | ||
coverage cffi ply six pyyaml "jsonschema>=2.6,<4.0" \ | ||
|
@@ -103,7 +102,7 @@ RUN apt-get update \ | |
libfaketime \ | ||
pylint \ | ||
cppcheck \ | ||
enchant \ | ||
enchant-2 \ | ||
aspell \ | ||
aspell-en \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
@@ -119,7 +118,7 @@ RUN mkdir caliper \ | |
&& wget -O - https://github.com/LLNL/Caliper/archive/v1.7.0.tar.gz | tar xvz --strip-components 1 \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& CC=gcc CXX=g++ cmake .. -DCMAKE_INSTALL_PREFIX=/usr \ | ||
&& CC=gcc CXX=g++ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_GOTCHA=Off \ | ||
&& make -j 4 \ | ||
&& make install \ | ||
&& cd ../.. \ | ||
|
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