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

Support for GROMACS 2023 #562

Merged
merged 5 commits into from
Sep 5, 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
13 changes: 13 additions & 0 deletions .github/workflows/test-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,16 @@ jobs:
path_compile_script: devel-tools/compile-gromacs.sh
test_lib_directory: gromacs/tests/library
rpath_exe: install/bin/gmx_d

gromacs-2023:
name: GROMACS 2023
if: github.event_name == 'pull_request' || contains(github.event.head_commit.message, 'test-gromacs-2023')
uses: ./.github/workflows/backend-template.yml
with:
backend_name: GROMACS-2023
backend_repo: gromacs/gromacs
backend_repo_ref: release-2023
container_name: CentOS9-devel
path_compile_script: devel-tools/compile-gromacs.sh
test_lib_directory: gromacs/tests/library
rpath_exe: install/bin/gmx_d
2 changes: 1 addition & 1 deletion devel-tools/compile-gromacs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ compile_gromacs_target() {
fi

local GMX_SRC_DIR=""
if [ -f "${1}/src/gromacs/commandline.h" ] ; then
if [ -d "${1}/src/gromacs" ] ; then
GMX_SRC_DIR=$(realpath "${1}")
shift
else
Expand Down
Loading