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 c9d3e6b commit 8d356beCopy full SHA for 8d356be
.github/workflows/ci.yml
@@ -219,8 +219,10 @@ jobs:
219
run: |
220
export LD_LIBRARY_PATH=${{github.workspace}}/local/lib:${{github.workspace}}/local/external/lib:${LD_LIBRARY_PATH}
221
OLDSOPT=`ls ${{github.workspace}}/local/lib/libsopt*`
222
- SOPTBASE=${OLDSOPT%.*}
223
- NEWSOPT=${SOPTBASE%.*}.${OLDSOPT##*.}
+ NEWSOPT=${OLDSOPT%.*}
+ if [[ $OLDSOPT == *"dylib"* ]]; then
224
+ NEWSOPT=${NEWSOPT%.*}.${OLDSOPT##*.}
225
+ fi
226
ln -s $OLDSOPT $NEWSOPT
227
ls ${{github.workspace}}/local/lib/
228
ctest -C ${{env.BUILD_TYPE}} --output-on-failure
0 commit comments