File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -51,12 +51,23 @@ jobs:
5151 SCALA_VERSION=$(cat SCALA_VERSION)
5252 echo SCALA_VERSION: $SCALA_VERSION
5353 echo "SCALA_VERSION=$SCALA_VERSION" >> $GITHUB_ENV
54+
55+ - name : Install Boehm GC
56+ if : ${{ matrix.name == 'linux' }}
57+ run : |
58+ sudo apt-get update
59+ sudo apt-get install -y libgc-dev
60+
61+ - name : Install Boehm GC (macOS)
62+ if : ${{ matrix.name == 'mac' }}
63+ run : |
64+ brew install bdw-gc
5465
5566 - name : Build native libraries for ${{ matrix.name }}-${{ matrix.arch }}
5667 run : |
5768 ./sbt 'wvcLib/nativeLink'
5869 ./sbt 'wvcLibStatic/nativeLink'
59- FILEPATH=$(find . -name 'libwvlet.*' )
70+ FILEPATH=$(find . -type f \( - name 'libwvlet.so' -o -name 'libwvlet.a' \) )
6071 echo "Found $FILEPATH"
6172 mkdir -p out
6273 cp $FILEPATH ./out/
You can’t perform that action at this time.
0 commit comments