From cb3432a13b45448e6216f5423463b176d0d45d92 Mon Sep 17 00:00:00 2001 From: Pierre Guillot Date: Mon, 9 Sep 2024 15:40:15 +0200 Subject: [PATCH] .github/workflows/ci.yml --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09d5a7f7..8ab8ff4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,14 +115,13 @@ jobs: cp Application_Partiels.provisionprofile ~/Library/MobileDevice/Provisioning\ Profiles/$ppuuid.mobileprovision rm ./Application_Partiels.provisionprofile - name: Configure - run: cmake -B ${{ github.workspace }}/build -G "Xcode" -DPARTIELS_PROVISIONING_PROFILE_SPECIFIER="Application Partiels" -DPARTIELS_DEVELOPMENT_TEAM="${{ secrets.DEV_TEAM_APPLE_ID }}" -DPARTIELS_BUILD_TAG=${{ env.tag_name }} + run: cmake -B ${{ github.workspace }}/build -G "Xcode" -DPARTIELS_BUILD_TAG=${{ env.tag_name }} - name: Build - run: | - security unlock-keychain -p ${{ secrets.DEV_ID_PASSWORD }} buildagent - security set-keychain-settings -lut 7200 buildagent - set -o pipefail && cmake --build ${{ github.workspace }}/build --config ${{ env.build_type }} | xcbeautify --renderer github-actions --disable-logging + run: set -o pipefail && cmake --build ${{ github.workspace }}/build --config ${{ env.build_type }} | xcbeautify --renderer github-actions --disable-logging - name: Test run: ctest -C ${{ env.build_type }} -VV --test-dir ${{ github.workspace }}/build --output-on-failure + - name: Configure (with profile) + run: cmake -B ${{ github.workspace }}/build -G "Xcode" -DPARTIELS_PROVISIONING_PROFILE_SPECIFIER="Application Partiels" -DPARTIELS_DEVELOPMENT_TEAM="${{ secrets.DEV_TEAM_APPLE_ID }}" -DPARTIELS_BUILD_TAG=${{ env.tag_name }} - name: Archive run: | security unlock-keychain -p ${{ secrets.DEV_ID_PASSWORD }} buildagent