Skip to content

Commit

Permalink
more debug info.
Browse files Browse the repository at this point in the history
  • Loading branch information
phronmophobic committed Jul 8, 2024
1 parent 4424dc1 commit 735a94f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/mobiletest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
# name: jar
# path: .

- name: Cache GraalVM
uses: actions/cache@v1
id: cache-graalvm-m1
with:
path: ~/graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final
key: ${{ runner.os }}-graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final
restore-keys: |
${{ runner.os }}-graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final
# - name: Cache GraalVM
# uses: actions/cache@v1
# id: cache-graalvm-m1
# with:
# path: ~/graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final
# key: ${{ runner.os }}-graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final
# restore-keys: |
# ${{ runner.os }}-graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final

- name: Setup Clojure
# You may pin to the exact commit or the version.
Expand Down Expand Up @@ -76,6 +76,9 @@ jobs:
- name: Build app
run: |
export GRAALVM_HOME="$HOME/graalvm-svm-java17-darwin-m1-gluon-22.1.0.1-Final/Contents/Home"
export JAVA_HOME="$GRAALVM_HOME"
export PATH=$JAVA_HOME/bin:$PATH
scripts/build-shared
# - uses: actions/upload-artifact@v1
Expand Down
4 changes: 3 additions & 1 deletion scripts/compile-shared
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@ $GRAALVM_HOME/bin/native-image \
# -J-Xmx20G \
# -J-XX:MaxDirectMemorySize=8G \

df -h


rm -rf ./build/out
mkdir -p build/out

uname -m
find ./tmp
df -h
clang --version

find ./tmp -name 'bb.o' -exec cp {} build/out \;
# find ./tmp -name 'grease-uber.o' -exec cp {} build/out \;
Expand Down

0 comments on commit 735a94f

Please sign in to comment.