Skip to content

Commit

Permalink
adding some "debug" ouptut
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Seitz committed Aug 2, 2023
1 parent 93a4829 commit 27763c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
if [[ '${{ env.BINDINGS_REF }}' == 'master' ]]; then
echo "PRECICE_TAG=latest" >> "$GITHUB_ENV"
echo "TAG=latest" >> "$GITHUB_ENV"
echo "Building TAG: latest"
else
echo "PRECICE_TAG=${{ env.BINDINGS_REF }}" >> "$GITHUB_ENV"
echo "TAG=${{ env.BINDINGS_REF }}" >> "$GITHUB_ENV"
echo "Building TAG: ${{ env.BINDINGS_REF }}"
fi
- name: Checkout Repository
uses: actions/checkout@v2
Expand All @@ -57,4 +59,4 @@ jobs:
tags: ${{ env.docker_username }}/python-bindings:${{ env.TAG }}
build-args: |
PRECICE_TAG=${{ env.PRECICE_TAG }}
PYTHON_BINDINGS_REF = ${{ env.BINDINGS_REF }}
PYTHON_BINDINGS_REF=${{ env.BINDINGS_REF }}
3 changes: 1 addition & 2 deletions tools/releasing/packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ SHELL ["/bin/bash", "-c"]
RUN python3 -m pip install --user --upgrade pip

# Rebuild image if force_rebuild after that command
ARG CACHEBUST
ARG PYTHON_BINDINGS_REF=develop

# Builds the precice python bindings for python3
RUN pip3 install --user git+https://github.com/precice/python-bindings.git@$PYTHON_BINDINGS_REF
RUN pip3 install --user git+https://github.com/precice/python-bindings.git@${PYTHON_BINDINGS_REF}

0 comments on commit 27763c8

Please sign in to comment.