Update Ubuntu version to 22.04.

Fixes #259.
This commit is contained in:
Nathan Baker
2022-12-11 15:21:17 -08:00
parent 6fe92253f1
commit 2395ebfa9e
6 changed files with 10 additions and 8 deletions

View File

@@ -101,7 +101,7 @@ jobs:
python-version: ["3.9"]
include:
- platform: ubuntu
os: ubuntu-20.04
os: ubuntu-22.04
bla-vendor: OpenBLAS
architecture: x64
- platform: macos

View File

@@ -46,7 +46,7 @@ jobs:
python-version: ["3.9"]
include:
- platform: ubuntu
os: ubuntu-20.04
os: ubuntu-22.04
bla-vendor: OpenBLAS
create-package: true
architecture: x64
@@ -273,7 +273,7 @@ jobs:
python-version: ["3.9"]
include:
- cpack: lin-zip
os: ubuntu-20.04
os: ubuntu-22.04
package_file: ${{ needs.build.outputs.cpack-out-lin-zip }}
architecture: x64
- cpack: mac-zip

View File

@@ -11,7 +11,7 @@ jobs:
Release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

View File

@@ -12,7 +12,7 @@
# Install base OS
###########################
FROM ubuntu:20.04 AS apbs_base_ubuntu
FROM ubuntu:22.04 AS apbs_base_ubuntu
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
@@ -26,7 +26,8 @@ RUN apt-get update && \
libf2c2-dev \
libeigen3-dev \
libboost-dev \
python3.9-dev \
python3-all \
python3-all-dev \
python3-pip \
libopenblas-serial-dev \
liblapack-dev \
@@ -70,7 +71,7 @@ ARG ENABLE_PBSAM=OFF
ARG ENABLE_PYTHON=OFF
ARG ENABLE_TESTS=ON
ARG GET_NanoShaper=ON
ARG PYTHON_VERSION="3.9"
ARG PYTHON_VERSION="3.10"
ARG MAKEJOBS="-j"
RUN cd /tmp_source && \

View File

@@ -38,7 +38,7 @@ The pre-compiled binaries include nearly all dependencies. There are a few item
* Linux
* Ubuntu or compatible flavor of Linux
* Compatible glibc
* Binaries were built with Ubuntu 20.04 with glibc version 2.31
* Binaries were built with Ubuntu 22.04 with glibc version 2.35
* Binaries have been tested *successfully* under Ubuntu 20.04, 21.10, and 22.04
* Binaries have been tested *unsuccessfully* under Ubuntu 18.04

View File

@@ -12,6 +12,7 @@ Minor Updates
* Added `Spack <https://spack.io/>`_` configuration file to ``tools/spack`` directory. See `#191 <https://github.com/Electrostatics/apbs/issues/191>_` for more information.
* Changed Docker builds to use Git-based METIS source code.
* Updated containers to Ubuntu 22.04.
---------------------
APBS 3.4.1 (Apr 2022)