Skip to content

Commit

Permalink
[ci] Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Apr 5, 2024
1 parent 9388ddb commit 12dc902
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/mac-codesign/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:
xcrun notarytool submit "codesign.zip" \
--team-id "GRW9MHZ724" \
--apple-id "[email protected]" \
--password "@env:MAC_ALTOOL_PASSWORD" \
--password "$MAC_ALTOOL_PASSWORD" \
--progress \
--wait
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/libossia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,6 @@ jobs:
BUILD_TYPE: ${{ matrix.build_type }}
run: |
export CTEST_OUTPUT_ON_FAILURE=1
# export RPI_ROOT_PATH=/opt/cross-pi-gcc
# export PKG_CONFIG_SYSROOT_DIR=$RPI_ROOT_PATH
# export PKG_CONFIG_LIBDIR=${RPI_ROOT_PATH}/usr/lib/pkgconfig:${RPI_ROOT_PATH}/usr/share/pkgconfig:${RPI_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/pkgconfig/
export PATH=/opt/cross-pi-gcc/bin:${PATH}
export LD_LIBRARY_PATH=/opt/cross-pi-gcc/lib:${LD_LIBRARY_PATH}
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ossia-pd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,11 @@ jobs:
- name: Build
run: |
export CTEST_OUTPUT_ON_FAILURE=1
export RPI_ROOT_PATH=/opt/cross-pi-gcc
export PKG_CONFIG_SYSROOT_DIR=$RPI_ROOT_PATH
export PKG_CONFIG_LIBDIR=${RPI_ROOT_PATH}/usr/lib/pkgconfig:${RPI_ROOT_PATH}/usr/share/pkgconfig:${RPI_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/pkgconfig/
export PATH=/opt/cross-pi-gcc/bin:${PATH}
export LD_LIBRARY_PATH=/opt/cross-pi-gcc/lib:${LD_LIBRARY_PATH}
cmake -B build -S ${GITHUB_WORKSPACE} -DCMAKE_TOOLCHAIN_FILE="${GITHUB_WORKSPACE}/cmake/toolchain/arm-linux-gnueabihf.cmake" \
cmake -B build -S ${GITHUB_WORKSPACE} \
-DCMAKE_TOOLCHAIN_FILE="/opt/cross-pi-gcc/aarch64-rpi3-linux-gnu.toolchain.cmake" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=install \
-DOSSIA_CI=1 \
Expand Down
2 changes: 1 addition & 1 deletion src/ossia-max/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ endif()
if(Git_FOUND)
if(${MAXSDK_PATH} STREQUAL "${OSSIA_3RDPARTY_FOLDER}/max-sdk")
execute_process(
COMMAND Git::Git submodule update --init -- ${OSSIA_3RDPARTY_FOLDER}/max-sdk
COMMAND "${GIT_EXECUTABLE}" submodule update --init -- ${OSSIA_3RDPARTY_FOLDER}/max-sdk
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND_ERROR_IS_FATAL ANY)
endif()
Expand Down

0 comments on commit 12dc902

Please sign in to comment.