Skip to content

Commit

Permalink
CI: Added codesign of librtcheck.dylib
Browse files Browse the repository at this point in the history
  • Loading branch information
drowaudio committed Jun 11, 2024
1 parent e62e1b4 commit d0eaff1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ jobs:
- name: Codesign (macOS)
if: ${{ matrix.name == 'macOS' }}
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
run: |
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
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
- name: "Notarize and staple (macOS)"
if: ${{ matrix.name == 'macOS' }}
Expand Down
3 changes: 2 additions & 1 deletion Source/Validator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ inline juce::Array<juce::UnitTestRunner::TestResult> runTests (PluginTests& test

updateFileNameIfPossible (test, testRunner);
const int failures = getNumFailures (results);
if (!failures)

if (! failures)
testRunner.logMessage("SUCCESS");
else
testRunner.logMessage("FAILURE");
Expand Down

0 comments on commit d0eaff1

Please sign in to comment.