This is an automated email from the ASF dual-hosted git repository.

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new c30bfd6  CI Build, Test, and Package task should be using Java 11, not 
Java 8
c30bfd6 is described below

commit c30bfd60d53188bab872b6d90c8963c3e1afed3a
Author: Davin Shearer <[email protected]>
AuthorDate: Fri Sep 30 09:29:33 2022 -0400

    CI Build, Test, and Package task should be using Java 11, not Java 8
    
    fixes #312
---
 .github/workflows/CI.yml | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 1d50790..adde5c8 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -48,14 +48,13 @@ jobs:
         shell: bash
     env:
       SBT: sbt -J-Xms1024m -J-Xmx5120m -J-XX:ReservedCodeCacheSize=512m 
-J-XX:MaxMetaspaceSize=1024m ++2.12.15
-
     steps:
       - uses: actions/[email protected]
-      - name: Setup Node
+      - name: Setup Node 16
         uses: actions/[email protected]
         with:
           node-version: '16'
-      - name: Setup Java
+      - name: Setup Java 11
         uses: actions/[email protected]
         with:
           distribution: temurin
@@ -73,19 +72,16 @@ jobs:
         shell: bash
     env:
       SBT: sbt -J-Xms1024m -J-Xmx5120m -J-XX:ReservedCodeCacheSize=512m 
-J-XX:MaxMetaspaceSize=1024m ++2.12.15
-
     steps:
-      - name: Setup Java
+      - name: Setup Java 11
         uses: actions/[email protected]
         with:
           distribution: temurin
           java-version: 11
-
       - name: Check out Repository
         uses: actions/[email protected]
         with:
           fetch-depth: 0
-
       - name: Run Rat Check
         run: $SBT ratCheck || (cat target/rat.txt; exit 1)
 
@@ -102,6 +98,11 @@ jobs:
     env:
       SBT: sbt -J-Xms1024m -J-Xmx5120m -J-XX:ReservedCodeCacheSize=512m 
-J-XX:MaxMetaspaceSize=1024m ++2.12.15
     steps:
+      - name: Setup Java 11
+        uses: actions/[email protected]
+        with:
+          distribution: temurin
+          java-version: 11
       - uses: actions/[email protected]
       - name: Install Node.js
         uses: actions/[email protected]

Reply via email to