Skip to content

Commit

Permalink
ci: remove zig
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Jul 3, 2024
1 parent 3d07782 commit ea471cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/install-graalvm-linux.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
#!/bin/bash
set -e -x

uname - a

yum install -y zip

curl -s "https://get.sdkman.io" | sh -s -- -y
source "$HOME/.sdkman/bin/sdkman-init.sh"

sdk install java 22.0.1-graalce
sdk default java 22.0.1-graalce
sdk default java 22.0.1-graalce

echo "GRAALVM_HOME: $GRAALVM_HOME"
echo "JAVA_HOME: $JAVA_HOME"
java --version
native-image --version
5 changes: 3 additions & 2 deletions .github/workflows/release_pyton_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
set-java-home: 'true'
- name: Example step
run: |
uname - a
echo "GRAALVM_HOME: $GRAALVM_HOME"
echo "JAVA_HOME: $JAVA_HOME"
java --version
Expand All @@ -58,10 +59,10 @@ jobs:
with:
target: ${{ matrix.platform.target }}
working-directory: "bindings/python"
args: --release --out dist --zig
args: --release --out dist
sccache: 'true'
manylinux: auto
#before-script-linux: ../../.github/workflows/install-graalvm-linux.sh
before-script-linux: ../../.github/workflows/install-graalvm-linux.sh
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit ea471cd

Please sign in to comment.