We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389800e commit a72c2d1Copy full SHA for a72c2d1
action.yml
@@ -103,9 +103,12 @@ runs:
103
. /etc/os-release
104
echo "osidpair=${ID}${VERSION_ID}" >> $GITHUB_OUTPUT
105
echo "osid=${ID}$(echo ${VERSION_ID} | tr -d '.')" >> $GITHUB_OUTPUT
106
+ # patchelf is needed to check whether an ELF binary contains the Testing library
107
+ which patchelf || apt install patchelf
108
elif [ ${RUNNER_OS} == 'macOS' ]; then
109
echo "osidpair=macos" >> $GITHUB_OUTPUT
110
echo "osid=macos" >> $GITHUB_OUTPUT
111
+ which patchelf || brew install patchelf
112
else
113
echo "::error::Unsupported platform: ${RUNNER_OS}"
114
exit 1
0 commit comments