Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Zhou committed Sep 19, 2023
1 parent f1a9064 commit 203099e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ubuntu-latest
java: 8 # TODO: Add 11 once build issues are resolved
os: [ubuntu-latest]
java: [8] # TODO: Add 11 once build issues are resolved. Debug
name: Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
- uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 8
java-version: ${{ matrix.java }}
cache: gradle
- run: ./.github/scripts/build.sh

2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: 8
java: [8]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 203099e

Please sign in to comment.