Skip to content

Commit b465a9c

Browse files
committed
Attempt to fix Graal verions
1 parent b9d61bc commit b465a9c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/actions/native-tools-setup/env-setup

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ fi
2323

2424

2525
# Download Graal
26-
curl -L "${graal_url}" | tar -xz
26+
echo "Downloading GraalVM from: ${graal_url}"
27+
curl -L "${graal_url}" > "${graal_ar}"
28+
tar -xzf "${graal_ar}"
2729
graal_bin="${graal_dir}/bin"
2830
if [ ! -d "${graal_bin}" ]
2931
then

.github/workflows/build-native.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build Native Images
22

33
on:
44
push:
5-
branches: [ "main", "release/**", "unified-tool" ]
5+
branches: [ "main", "release/**" ]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88
release:

0 commit comments

Comments
 (0)