Skip to content

Commit

Permalink
ci: rpath info
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Aug 3, 2023
1 parent a2d2721 commit aba04ee
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-scripts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,11 @@ jobs:
sudo apt-get -y install doxygen python-is-python3 python3-breathe
make -C documentation
- name: otool
if: runner.os == 'macOS'
run: otool -D -L bundle/usr/*/lib/*.dylib lib/*/*.dylib bin/*/pvxinfo
if: ${{ always() && runner.os == 'macOS' }}
run: otool -D -L -l bundle/usr/*/lib/*.dylib lib/*/*.dylib bin/*/pvxinfo
- name: readelf
if: ${{ always() && runner.os == 'Linux' }}
run: find bundle/usr lib -name '*.so' -print0 | xargs -0 readelf -d bin/linux-*/pvxinfo
- name: Host info
run: python .ci/cue.py --add-path "{TOP}/bin/{EPICS_HOST_ARCH}" --add-path "{TOP}/bundle/usr/{EPICS_HOST_ARCH}/lib" exec pvxinfo -D
- name: Run main module tests
Expand All @@ -170,6 +173,10 @@ jobs:
- name: CDT Check
run: ./.ci-local/cdt-check.sh
if: runner.os == 'Linux'
- name: Troubleshoot
if: ${{ always() }}
shell: bash
run: grep . cfg/*
- name: Upload tapfiles Artifact
if: ${{ always() }}
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit aba04ee

Please sign in to comment.