Skip to content

Commit

Permalink
Upgrade graal version on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dundalek committed Mar 14, 2020
1 parent b963534 commit e3cdd8e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: deploy

env:
GRAAL_VERSION: "20.0.0.java11"
# on:
# push:
# tags:
Expand Down Expand Up @@ -159,7 +161,7 @@ jobs:
- uses: actions/cache@v1
with:
path: /Users/runner/hostedtoolcache/GraalVM
key: ${{ runner.os }}-graal-19.2.1
key: ${{ runner.os }}-graal-${{ env.GRAAL_VERSION }}
restore-keys: |
${{ runner.os }}-graal-
Expand All @@ -184,9 +186,9 @@ jobs:
path: .

- name: Prepare GraalVM
uses: DeLaGuardo/setup-graalvm@1.0
uses: DeLaGuardo/setup-graalvm@3
with:
graalvm-version: "19.2.1"
graalvm-version: ${{ env.GRAAL_VERSION }}

- name: Install native-image
run: gu install native-image
Expand Down Expand Up @@ -234,7 +236,7 @@ jobs:
- uses: actions/cache@v1
with:
path: /opt/hostedtoolcache/GraalVM
key: ${{ runner.os }}-graal-19.2.1
key: ${{ runner.os }}-graal-${{ env.GRAAL_VERSION }}
restore-keys: |
${{ runner.os }}-graal-
Expand All @@ -259,9 +261,9 @@ jobs:
path: .

- name: Prepare GraalVM
uses: DeLaGuardo/setup-graalvm@1.0
uses: DeLaGuardo/setup-graalvm@3
with:
graalvm-version: "19.2.1"
graalvm-version: ${{ env.GRAAL_VERSION }}

- name: Install native-image
run: gu install native-image
Expand Down

0 comments on commit e3cdd8e

Please sign in to comment.