Skip to content

Commit

Permalink
allow for ldd failures
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Kolberg <[email protected]>
  • Loading branch information
amdprophet committed Nov 27, 2024
1 parent 0a29fa2 commit 6eb2a50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow-build-otelcol-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
if: contains(inputs.arch_os, 'linux')
working-directory: ./pkg/tools/otelcol-config
run: |
ldd ${{ steps.set-binary-name.outputs.binary_name }}
ldd ${{ steps.set-binary-name.outputs.binary_name }} || true
- name: Show BoringSSL symbols
if: inputs.fips && contains(inputs.arch_os, 'linux')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
if: contains(inputs.arch_os, 'linux')
working-directory: ./pkg/tools/otelcol-config
run: |
ldd ${{ steps.set-binary-name.outputs.binary_name }}
ldd ${{ steps.set-binary-name.outputs.binary_name }} || true
- name: Show BoringSSL symbols
if: inputs.fips && contains(inputs.arch_os, 'linux')
Expand Down

0 comments on commit 6eb2a50

Please sign in to comment.