From 805820eeea75d3963fcadbfbf2b1b44031a4b940 Mon Sep 17 00:00:00 2001 From: Ellie Bahadori Date: Fri, 24 Jul 2020 10:31:52 -0700 Subject: [PATCH] Remove JDK version matrix for now --- .../workflows/continuous-integration-workflow.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 02ed3937..42d78178 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -11,16 +11,16 @@ jobs: build: name: Build runs-on: ubuntu-latest - strategy: - matrix: - jdk: [8, 11] - fail-fast: false +# strategy: +# matrix: +# jdk: [8, 11] +# fail-fast: false steps: - uses: actions/checkout@v2 - - name: Set up JDK ${{ matrix.jdk }} + - name: Set up JDK 8 uses: actions/setup-java@v1 with: - java-version: ${{ matrix.jdk }} + java-version: '8' - name: Cache Gradle packages uses: actions/cache@v2 with: