Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI updates #200

Merged
merged 5 commits into from
Nov 16, 2023
Merged
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
6 changes: 2 additions & 4 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,12 @@ jobs:
- {dockerfile: 'opensuse', tag: 'latest', continue-on-error: 'true'}
- {dockerfile: 'fedora', tag: 'latest', build_args: 'GMX_BRANCH=release-2019,GMX_DOUBLE=ON'}
- {dockerfile: 'fedora', tag: 'gmx2019', build_args: 'GMX_BRANCH=release-2019'}
- {dockerfile: 'fedora', tag: 'gmx2022_d', build_args: 'GMX_BRANCH=release-2022,GMX_DOUBLE=ON'}
- {dockerfile: 'fedora', tag: 'gmx2022', build_args: 'GMX_BRANCH=release-2022'}
- {dockerfile: 'fedora', tag: 'gmx2023_d', build_args: 'GMX_BRANCH=release-2023,GMX_DOUBLE=ON'}
- {dockerfile: 'fedora', tag: 'gmx2023', build_args: 'GMX_BRANCH=release-2023'}
- {dockerfile: 'fedora', tag: 'gmx9999_d', build_args: 'GMX_BRANCH=main,GMX_DOUBLE=ON', continue-on-error: 'true'}
- {dockerfile: 'fedora', tag: 'gmx9999', build_args: 'GMX_BRANCH=main', continue-on-error: 'true'}
- {dockerfile: 'fedora', tag: 'nogmx', build_args: 'GMX_BRANCH=none'}
- {dockerfile: 'fedora', tag: 'intel', build_args: 'TAG=37,INTEL=yes', continue-on-error: 'true'}
- {dockerfile: 'fedora', tag: 'intel', build_args: 'TAG=37,INTEL=yes,PYTHON=python3.11', continue-on-error: 'true'}
- {dockerfile: 'actions', tag: 'latest'}
- {dockerfile: 'format', tag: 'latest'}
runs-on: ubuntu-latest
Expand All @@ -59,7 +57,7 @@ jobs:
id: build_args
run: |
echo "args<<EOF" >> $GITHUB_OUTPUT
echo ${{ matrix.config.build_args }} | sed 's/,/\n/' >> $GITHUB_OUTPUT
echo ${{ matrix.config.build_args }} | sed 's/,/\n/g' >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Build and Push Docker images for all Container Registries
uses: docker/build-push-action@v3
Expand Down
2 changes: 1 addition & 1 deletion fedora
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.fedoraproject.org/fedora:${TAG}

ARG GMX_BRANCH
ARG GMX_DOUBLE
ARG PYTHON=python3.11
ARG PYTHON=python3.12
ARG INTEL

RUN ( dnf -y update || dnf -y update ) && \
Expand Down
2 changes: 1 addition & 1 deletion opensuse
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM opensuse/tumbleweed:latest

ARG GMX_BRANCH
ARG GMX_DOUBLE
ARG OPENMPI=openmpi3
ARG OPENMPI=openmpi4

RUN zypper dup -y && \
zypper install -y \
Expand Down