File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,16 @@ jobs:
158158
159159 - name : Install wolfProvider
160160 run : |
161- $GITHUB_WORKSPACE/debian/install-wolfprov.sh ${{ env.WOLFPROV_PACKAGES_PATH }}
161+ if [ "${{ inputs.fips_ref }}" = "FIPS" ]; then
162+ FIPS_FLAG="--fips"
163+ else
164+ FIPS_FLAG=""
165+ fi
166+ $GITHUB_WORKSPACE/debian/install-wolfprov.sh $FIPS_FLAG ${{ env.WOLFPROV_PACKAGES_PATH }} || {
167+ echo "Build failed. Showing test-suite.log if available:"
168+ find . -name "test-suite.log" -exec cat {} \;
169+ exit 1
170+ }
162171
163172 - name : Setup packages directory
164173 run : |
Original file line number Diff line number Diff line change @@ -82,6 +82,4 @@ override_dh_auto_clean:
8282 rm -rf test/standalone/tests/.libs
8383
8484override_dh_auto_test :
85- # Set LD_LIBRARY_PATH to find installed wolfSSL/OpenSSL libraries
86- export LD_LIBRARY_PATH=/usr/lib/$(DEB_HOST_MULTIARCH ) :$$ LD_LIBRARY_PATH && \
8785 $(MAKE ) test
You can’t perform that action at this time.
0 commit comments