Skip to content
Closed
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test ApiDiff
name: Build and Test APIDiff

on:
push:
Expand All @@ -14,17 +14,17 @@ jobs:
steps:
- name: 'Check out repository'
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: 'Set up Java Development Kit'
uses: oracle-actions/setup-java@v1
uses: actions/setup-java@v4
with:
website: oracle.com
release: 17
distribution: 'oracle'
java-version: 17

- name: 'Build APIDiff'
shell: bash
run: bash make/build.sh

- name: 'Build ApiDiff'
- name: 'Self-test APIDiff'
shell: bash
run: |
java --version
bash make/build.sh
run: bash make/build.sh --skip-download -- test
1 change: 0 additions & 1 deletion test/junit/JUnitTests.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ $(BUILDTESTDIR)/JUnitTests.ok: \
$(RM) $(@:%.ok=%/work) $(@:%.ok=%/report)
$(MKDIR) -p $(@:%.ok=%/work) $(@:%.ok=%/report)
cd $(@:%.ok=%/work) ; \
set -o pipefail ; \
$(JAVA) \
$(JUnitTest.add-exports) \
-jar $(JUNIT_JAR) \
Expand Down