Skip to content

Commit c9780be

Browse files
committed
Fix(mac): Common environment variables
1 parent c3533ec commit c9780be

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ jobs:
140140
pattern: native_libs-*
141141
path: ${{env.NATIVE_LIB_LOCATION}}
142142
merge-multiple: true
143+
- name: List the built artifacts
144+
run: ls -lhtR
145+
working-directory: ${{env.NATIVE_LIB_LOCATION}}
143146

144147
- name: Test for ${{ matrix.os }} ${{ matrix.java }}
145148
shell: bash
@@ -150,6 +153,9 @@ jobs:
150153
echo -n
151154
fi
152155
156+
echo ${{env.NATIVE_LIB_LOCATION}}
157+
pwd
158+
153159
sbt +assembly
154160
java -cp ./examples/target/scala-2.12/scala-polars-examples-assembly-0.1.0-SNAPSHOT.jar examples.scala.io.LazyAndEagerAPI
155161
java -cp ./examples/target/scala-2.13/scala-polars-examples-assembly-0.1.0-SNAPSHOT.jar examples.scala.io.LazyAndEagerAPI

native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[lib]
1111
name = "scala_polars"
12-
crate_type = ["cdylib"]
12+
crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
futures = "0.3.25"

0 commit comments

Comments
 (0)