Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,6 @@ jobs:
with:
name: news-artifact
path: web/news/public

- name: Cache Tycho p2 + m2
uses: actions/cache@v6
with:
enableCrossOsArchive: true
path: |
~/.m2/repository/
~/.cache/tycho/
key: ${{ runner.os }}-tycho-${{ hashFiles('**/java/bundles/org.eclipse.set.releng.target/org.eclipse.set.releng.target.target', '**/pom.xml') }}
restore-keys: ${{ runner.os }}-tycho-

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The maven dependencies are already cached by action setup-java


- name: Build
run: |
Expand Down Expand Up @@ -303,16 +293,6 @@ jobs:
name: news-artifact
path: web/news/public

- name: Cache Tycho p2 + m2
uses: actions/cache@v6
with:
enableCrossOsArchive: true
path: |
~/.m2/repository/
~/.cache/tycho/
key: ${{ runner.os }}-tycho-${{ hashFiles('**/java/bundles/org.eclipse.set.releng.target/org.eclipse.set.releng.target.target', '**/pom.xml') }}
restore-keys: ${{ runner.os }}-tycho-

- name: Run Tests
run: |
mvn ${{ env.MVN_FLAGS }} -f java/pom.xml verify \
Expand Down Expand Up @@ -393,16 +373,6 @@ jobs:
name: news-artifact
path: web/news/public

- name: Cache Tycho p2 + m2
uses: actions/cache@v6
with:
enableCrossOsArchive: true
path: |
~/.m2/repository/
~/.cache/tycho/
key: ${{ runner.os }}-tycho-${{ hashFiles('**/java/bundles/org.eclipse.set.releng.target/org.eclipse.set.releng.target.target', '**/pom.xml') }}
restore-keys: ${{ runner.os }}-tycho-

- name: Trace compilation
run: mvn ${{ env.MVN_FLAGS }} -f java/pom.xml compile

Expand Down Expand Up @@ -445,16 +415,6 @@ jobs:
repo: ${{ github.repository }}
continue-on-error: true

- name: Cache Tycho p2 + m2
uses: actions/cache@v6
with:
enableCrossOsArchive: true
path: |
~/.m2/repository/
~/.cache/tycho/
key: ${{ runner.os }}-tycho-${{ hashFiles('**/java/bundles/org.eclipse.set.releng.target/org.eclipse.set.releng.target.target', '**/pom.xml') }}
restore-keys: ${{ runner.os }}-tycho-

- name: Run Test
id: test-steps
shell: bash
Expand Down
Loading