Closed fherreazcue closed 1 year ago
The dockerfile currently only supports specification of the major version of gcc, because it installs directly from apt-get, e.g. as apt-get install -y gcc-12 gfortran-12 g++-12. The gh action then fails if a minor version (e.g. 12.2) is specified.
apt-get install -y gcc-12 gfortran-12 g++-12
fixed in 7ebaa48.
The dockerfile currently only supports specification of the major version of gcc, because it installs directly from apt-get, e.g. as
apt-get install -y gcc-12 gfortran-12 g++-12
. The gh action then fails if a minor version (e.g. 12.2) is specified.