Skip to content

Commit

Permalink
Enable individual libs for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Nov 6, 2021
1 parent b57c8bf commit d8443aa
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
build:
runs-on: macos-latest
env:
OPENSCAD_LIBRARIES: /Users/runner/work/actions-test/libraries/install/
OPENSCAD_LIBRARIES: /Users/runner/work/openscad/libraries/install/
LIBRARIES_CACHE: libraries.tar.gz
steps:
- name: Checkout OpenSCAD
uses: actions/checkout@v2
Expand Down Expand Up @@ -40,7 +41,31 @@ jobs:
echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH"
# Pick up our own Qt
export PATH=$OPENSCAD_LIBRARIES/bin:$PATH
./scripts/macosx-build-dependencies.sh -d
# ./scripts/macosx-build-dependencies.sh -d
./scripts/macosx-build-dependencies.sh double_conversion
./scripts/macosx-build-dependencies.sh eigen
./scripts/macosx-build-dependencies.sh gmp
./scripts/macosx-build-dependencies.sh mpfr
./scripts/macosx-build-dependencies.sh glew
./scripts/macosx-build-dependencies.sh gettext
./scripts/macosx-build-dependencies.sh libffi
./scripts/macosx-build-dependencies.sh freetype
./scripts/macosx-build-dependencies.sh ragel
./scripts/macosx-build-dependencies.sh harfbuzz
./scripts/macosx-build-dependencies.sh libxml2
./scripts/macosx-build-dependencies.sh fontconfig || true
./scripts/macosx-build-dependencies.sh hidapi
./scripts/macosx-build-dependencies.sh libuuid
./scripts/macosx-build-dependencies.sh lib3mf
./scripts/macosx-build-dependencies.sh pixman
./scripts/macosx-build-dependencies.sh cairo
# ./scripts/macosx-build-dependencies.sh glib2
# ./scripts/macosx-build-dependencies.sh boost
# ./scripts/macosx-build-dependencies.sh cgal
# ./scripts/macosx-build-dependencies.sh qt5
# ./scripts/macosx-build-dependencies.sh qscintilla
# ./scripts/macosx-build-dependencies.sh opencsg
# ./scripts/macosx-build-dependencies.sh -d sparkle
mkdir -p ${{ runner.temp }}/out
tar cz -C "$OPENSCAD_LIBRARIES" -f ${{ runner.temp }}/out/"$LIBRARIES_CACHE" .
shasum -a 512 ${{ runner.temp }}/out/"$LIBRARIES_CACHE" > ${{ runner.temp }}/out/"$LIBRARIES_CACHE".sha512
Expand Down

0 comments on commit d8443aa

Please sign in to comment.