Skip to content

Commit

Permalink
~/.m2 might not exist on new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Karm committed Apr 2, 2022
1 parent 4ae0ed6 commit 6b90d6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/local_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:
cmd /C native-image --version
)
pushd ts
mkdir ~/.m2
copy .github/mvn-settings.xml ~/.m2/settings.xml
mvn clean verify -Ptestsuite -Dquarkus.version=${{ matrix.quarkus-version }}
shell: cmd
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/testing_testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
cmd /C native-image --version
)
pushd ts
mkdir -p ~/.m2/
mkdir ~/.m2/
copy .github/mvn-settings.xml ~/.m2/settings.xml
mvn clean verify -Ptestsuite -DexcludeTags=all -DincludeTags=testing-testsuite
mvn clean verify -Ptestsuite -DexcludeTags=all -DincludeTags=testing-testsuite
shell: cmd
- name: Linux test
if: startsWith(matrix.os, 'ubuntu')
Expand All @@ -105,6 +105,7 @@ jobs:
fi
native-image --version
pushd ts
mkdir -p ~/.m2/
cp .github/mvn-settings.xml ~/.m2/settings.xml
mvn clean verify -Ptestsuite -DexcludeTags=all -DincludeTags=testing-testsuite
shell: bash
Expand Down

0 comments on commit 6b90d6f

Please sign in to comment.