Skip to content

Commit

Permalink
#2029 fix M2 repo env
Browse files Browse the repository at this point in the history
  • Loading branch information
alstanchev authored Oct 1, 2024
1 parent 5ffe235 commit 2206476
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ jobs:
echo "MAVEN_OPTS: ${{ env.MAVEN_OPTS }}"
echo "EXTRA_MAVEN_ARGS: ${{ env.EXTRA_MAVEN_ARGS }}"
echo "FORK_COUNT: ${{ env.FORK_COUNT }}"
echo "HOST_M2_REPO: ${{ env.HOST_M2_REPO }}"
echo "WORKSPACE: ${{ env.WORKSPACE }}"
echo "M2_REPO: ${{ env.M2_REPO }}"
echo "HOST_M2_REPO: ${{ env.HOST_M2_REPO }}"
echo "HTTP_PUSH_MOCK_SERVER_PORT: ${{ env.HTTP_PUSH_MOCK_SERVER_PORT }}"
echo "EXTRA_DOCKER_ARGS: ${{ env.EXTRA_DOCKER_ARGS }}"
Expand Down Expand Up @@ -131,9 +131,14 @@ jobs:
echo "JAVA_TOOL_OPTIONS=-Duser.home=$HOME" >> $GITHUB_ENV
echo "M2_REPO=$HOME/.m2" >> $GITHUB_ENV
if [[ $GITHUB_ACTOR != "nektos/act" ]]; then
echo "HOST_M2_REPO=$M2_REPO" >> $GITHUB_ENV
echo "HOST_M2_REPO=$HOME/.m2" >> $GITHUB_ENV
fi
- name: Debug maven repo
run: |
echo "M2_REPO: $M2_REPO"
echo "HOST_M2_REPO: $HOST_M2_REPO"
- name: Compile Ditto
working-directory: ./ditto
run: |
Expand Down

0 comments on commit 2206476

Please sign in to comment.