Skip to content

Commit

Permalink
Build uuid before fontconfig as fontconfig wants to link to uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Nov 13, 2021
1 parent b0e3890 commit a862f2c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
destination: 64-bit
openscad-macos:
macos:
xcode: 12.3.0
xcode: 12.5.1
steps:
- checkout
- run: git submodule update --init
Expand All @@ -118,8 +118,8 @@ jobs:
brew install automake libtool cmake pkg-config
- restore_cache:
keys:
- macos-libraries-{{ checksum "scripts/macosx-build-dependencies.sh" }}-{{ checksum ".circleci/config.yml" }}
- macos-libraries-
- macos-libraries2-{{ checksum "scripts/macosx-build-dependencies.sh" }}-{{ checksum ".circleci/config.yml" }}
- macos-libraries2-
- run:
name: Build Dependencies
command: |
Expand All @@ -132,7 +132,7 @@ 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 double_conversion eigen gmp mpfr glew gettext libffi freetype ragel harfbuzz libzip libxml2 fontconfig hidapi libuuid lib3mf pixman cairo glib2 boost cgal qt5 opencsg qscintilla sparkle
./scripts/macosx-build-dependencies.sh -d double_conversion eigen gmp mpfr glew gettext libffi freetype ragel harfbuzz libzip libxml2 libuuid fontconfig hidapi lib3mf pixman cairo glib2 boost cgal qt5 opencsg qscintilla sparkle
- run:
name: Package Dependencies as an artifact
command: |
Expand All @@ -142,7 +142,7 @@ jobs:
tar cz -C "$OPENSCAD_LIBRARIES" -f /tmp/out/"$LIBRARIES_CACHE" .
shasum -a 512 /tmp/out/"$LIBRARIES_CACHE" > /tmp/out/"$LIBRARIES_CACHE".sha512
- save_cache:
key: macos-libraries-{{ checksum "scripts/macosx-build-dependencies.sh" }}-{{ checksum ".circleci/config.yml" }}
key: macos-libraries2-{{ checksum "scripts/macosx-build-dependencies.sh" }}-{{ checksum ".circleci/config.yml" }}
paths:
- /Users/distiller/libraries/install
- run:
Expand Down

0 comments on commit a862f2c

Please sign in to comment.