forked from AcademySoftwareFoundation/OpenRV
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Cédrik Fuoco <[email protected]>
- Loading branch information
1 parent
355d455
commit 5b6c1b3
Showing
25 changed files
with
528 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,10 +54,23 @@ runs: | |
brew install --quiet --formula libiconv libpng libpq libtool libuv libxau libxcb libxdmcp | ||
brew install --quiet --formula autoconf automake cmake pcre2 harfbuzz freetype node@18 nspr nss | ||
brew install --quiet --formula xcb-proto xcb-util xcb-util-cursor xcb-util-image xcb-util-keysyms xcb-util-renderutil xcb-util-wm | ||
brew install --quiet --formula brotli bzip2 dbus glew icu4c jpeg md4c [email protected] pkg-config sqlite xorgproto zlib zstd | ||
brew install --quiet --formula brotli bzip2 dbus glew icu4c jpeg md4c pkg-config sqlite xorgproto zlib zstd | ||
shell: bash | ||
|
||
- name: Install Homebrew dependencies (OpenSSL 1.1.1) | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' && matrix.vfx-platform == 'CY2023' | ||
run: | | ||
brew install --quiet --formula [email protected] | ||
brew list [email protected] | ||
shell: bash | ||
|
||
- name: Install Homebrew dependencies (OpenSSL 3.X.X) | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' && matrix.vfx-platform == 'CY2024' | ||
run: | | ||
brew install --quiet --formula openssl@3 | ||
brew list openssl@3 | ||
shell: bash | ||
|
||
# Use Ninja 1.11.1 because Qt need to be patched for Ninja 1.12.1. | ||
- name: Install Ninja 1.11.1 | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' | ||
|
@@ -120,8 +133,14 @@ runs: | |
mkdir -p qt-build | ||
shell: bash | ||
|
||
- name: Configure Qt ${{ inputs.qt-version }} | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' | ||
- name: List OpenSSL folder | ||
if: matrix.vfx-platform == 'CY2024' | ||
run: | | ||
ls -al $(brew --prefix openssl@3) | ||
shell: bash | ||
|
||
- name: Configure Qt ${{ inputs.qt-version }} for CY2023 | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' && matrix.vfx-platform == 'CY2023' | ||
run: | | ||
../qt-src/configure \ | ||
--prefix="../${{ inputs.qt-output }}" \ | ||
|
@@ -159,6 +178,45 @@ runs: | |
working-directory: ${{ github.workspace }}/qt-build | ||
shell: bash | ||
|
||
- name: Configure Qt ${{ inputs.qt-version }} for CY2024 | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' && matrix.vfx-platform == 'CY2024' | ||
run: | | ||
../qt-src/configure \ | ||
--prefix="../${{ inputs.qt-output }}" \ | ||
-no-strip \ | ||
-no-rpath \ | ||
-opensource \ | ||
-plugin-sql-sqlite \ | ||
-openssl-linked \ | ||
-verbose \ | ||
-opengl desktop \ | ||
-no-warnings-are-errors \ | ||
-no-libudev \ | ||
-no-egl \ | ||
-nomake examples \ | ||
-nomake tests \ | ||
-c++std c++14 \ | ||
-confirm-license \ | ||
-no-use-gold-linker \ | ||
-release \ | ||
-no-sql-mysql \ | ||
-no-xcb \ | ||
-qt-libjpeg \ | ||
-qt-libpng \ | ||
-bundled-xcb-xinput \ | ||
-sysconfdir /etc/xdg \ | ||
-qt-pcre \ | ||
-qt-harfbuzz \ | ||
-R . \ | ||
-icu \ | ||
-skip qtnetworkauth \ | ||
-skip qtpurchasing \ | ||
-skip qtlocation \ | ||
-I $(brew --prefix openssl@3)/include -L $(brew --prefix openssl@3)/lib \ | ||
-I /opt/homebrew/Cellar/icu4c/74.2/include -L /opt/homebrew/Cellar/icu4c/74.2/lib | ||
working-directory: ${{ github.workspace }}/qt-build | ||
shell: bash | ||
|
||
- name: Build Qt ${{ inputs.qt-version }} | ||
if: steps.arm64-qt.outputs.cache-hit != 'true' | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.