Skip to content

Commit d0eaff1

Browse files
committed
CI: Added codesign of librtcheck.dylib
1 parent e62e1b4 commit d0eaff1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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' }}

Source/Validator.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)