Skip to content

Commit

Permalink
Remove Maven caches again
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxji committed Oct 31, 2020
1 parent e5446e5 commit 3b7896c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,8 @@ jobs:
- name: Check out SemTK source
uses: actions/checkout@v2

- name: Cache Maven repository
uses: actions/cache@v2
with:
path: ~/.m2
key: m2-${{ hashFiles('**/pom.xml') }}

- name: Build SemTK jars
# TODO: The tests currently fail in Github Actions
run: |
mvn -version
mvn install -DskipTests
mvn -B install -DskipTests
8 changes: 1 addition & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,10 @@ jobs:
- name: Check out SemTK source
uses: actions/checkout@v2

- name: Cache Maven repository
uses: actions/cache@v2
with:
path: ~/.m2
key: m2-${{ hashFiles('**/pom.xml') }}

- name: Build SemTK release
run: |
mvn -version
mvn install -DskipTests -Prelease
mvn -B install -DskipTests -Prelease
- name: Upload SemTK dist tarball
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 3b7896c

Please sign in to comment.