diff --git a/.github/workflows/ci-cd-develop.yml b/.github/workflows/ci-cd-develop.yml index c9fa2950..18835680 100644 --- a/.github/workflows/ci-cd-develop.yml +++ b/.github/workflows/ci-cd-develop.yml @@ -28,7 +28,7 @@ jobs: echo "$GAMS_PATH" >> "$GITHUB_PATH" echo "GMSPYTHONLIB=/opt/conda/envs/gams/lib/libpython3.10.so" >> "$GITHUB_ENV" - name: Install solver dependencies - run: ./scripts/ci-setup-gams.sh + run: ./scripts/ci-setup-solvers.sh - name: Run checks shell: bash # required for the source command run: | diff --git a/Dockerfile b/Dockerfile index d0c51345..af6eec3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ ENV PATH="${PATH}:/opt/java/bin" # Install the toolbox server and its solver scripts COPY solvers solvers -RUN scripts/ci-setup-gams.sh +RUN scripts/ci-setup-solvers.sh COPY --from=builder /app/build/libs/toolbox-server-*.jar toolbox-server.jar # Run the toolbox server on dokku's default port diff --git a/scripts/ci-setup-gams.sh b/scripts/ci-setup-solvers.sh similarity index 100% rename from scripts/ci-setup-gams.sh rename to scripts/ci-setup-solvers.sh diff --git a/scripts/ci-setup-solvers.py b/scripts/install-python-dependencies.py similarity index 100% rename from scripts/ci-setup-solvers.py rename to scripts/install-python-dependencies.py