File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,9 @@ jobs:
147147
148148 - name : Codesign (macOS)
149149 if : ${{ matrix.name == 'macOS' }}
150- run : codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v ${{ env.APP_DIR }}/${{ matrix.app }} --entitlements ${{ env.BUILD_DIR }}/${{ env.BINARY_NAME }}_artefacts/JuceLibraryCode/${{ env.BINARY_NAME }}.entitlements --deep --strict --options=runtime --timestamp
150+ run : |
151+ codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v ${{ env.APP_DIR }}/${{ matrix.app }}/Contents/Libraries/librtcheck.dylib --entitlements ${{ env.BUILD_DIR }}/${{ env.BINARY_NAME }}_artefacts/JuceLibraryCode/${{ env.BINARY_NAME }}.entitlements --deep --strict --options=runtime --timestamp
152+ codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v ${{ env.APP_DIR }}/${{ matrix.app }} --entitlements ${{ env.BUILD_DIR }}/${{ env.BINARY_NAME }}_artefacts/JuceLibraryCode/${{ env.BINARY_NAME }}.entitlements --deep --strict --options=runtime --timestamp
151153
152154 - name : " Notarize and staple (macOS)"
153155 if : ${{ matrix.name == 'macOS' }}
Original file line number Diff line number Diff line change @@ -202,7 +202,8 @@ inline juce::Array<juce::UnitTestRunner::TestResult> runTests (PluginTests& test
202202
203203 updateFileNameIfPossible (test, testRunner);
204204 const int failures = getNumFailures (results);
205- if (!failures)
205+
206+ if (! failures)
206207 testRunner.logMessage (" SUCCESS" );
207208 else
208209 testRunner.logMessage (" FAILURE" );
You can’t perform that action at this time.
0 commit comments