Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Try to enable 3.8 and 3.9 python for cc7 #93

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
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
8 changes: 4 additions & 4 deletions .github/workflows/gh-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
exclude:
- image_dir: base-cc7
python: 3.8
- image_dir: base-almalinux8
python: 3.8
#- image_dir: base-almalinux8
# python: 3.8
- image_dir: base-cc7
python: 3.9
- image_dir: base-almalinux8
python: 3.9
#- image_dir: base-almalinux8
# python: 3.9
name: ${{ matrix.image_dir }}-${{ matrix.python }}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion base-almalinux8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python}

RUN yum -y update \
&& yum -y install git curl bzip2 libgfortran which \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.10.3-7/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& mamba update mamba \
Expand Down
2 changes: 1 addition & 1 deletion base-cc7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python}

RUN yum -y update \
&& yum -y install git curl bzip2 libgfortran which \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.10.3-7/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& mamba update mamba \
Expand Down
Loading