Skip to content

Commit

Permalink
remove java 8 and 17 from workflow
Browse files Browse the repository at this point in the history
Signed-off-by: David Cui <davidcui@amazon.com>
  • Loading branch information
davidcui1225 committed Mar 1, 2022
1 parent 25c9ea6 commit 9e6041c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/reports-scheduler-test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
build:
strategy:
matrix:
java: [8, 11, 14, 17]
java:
- 11
- 14
runs-on: ubuntu-latest

steps:
- name: Set up JDK 1.11
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: 1.11
java-version: ${{ matrix.java }}

# reports-scheduler
- name: Checkout Reports Scheduler
Expand All @@ -33,8 +35,6 @@ jobs:
run: |
cd reports-scheduler
./gradlew build -Dopensearch.version=${{ env.OPENSEARCH_VERSION }}
with:
java-version: ${{ matrix.java }}
- name: Upload coverage
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 9e6041c

Please sign in to comment.