From cf66797cadf32a5a6e03147be6e9433851c3f076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Zu=CC=88hlke?= Date: Sun, 20 Oct 2024 22:57:23 +0200 Subject: [PATCH] remove install native image step --- .github/workflows/ci.yml | 5 ----- build.sbt | 5 ----- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01758f1e63..6828206fd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -219,11 +219,6 @@ jobs: shell: bash run: npm install - - name: Install GraalVM Native Image - if: matrix.java == 'graalvm@21' - shell: bash - run: gu install native-image - - name: Configure Windows Pagefile if: matrix.os == 'windows-latest' uses: al-cheb/configure-pagefile-action@d298bdee6b133626425040e3788f1055a8b4cf7a diff --git a/build.sbt b/build.sbt index adfd43fa46..3fae6d4166 100644 --- a/build.sbt +++ b/build.sbt @@ -161,11 +161,6 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq( name = Some("Install jsdom and source-map-support"), cond = Some("matrix.ci == 'ciJS'") ), - WorkflowStep.Run( - List("gu install native-image"), - name = Some("Install GraalVM Native Image"), - cond = Some(s"matrix.java == '${GraalVM.render}'") - ), WorkflowStep.Use( UseRef.Public( "al-cheb",