File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -182,10 +182,13 @@ jobs:
182
182
# if: matrix.os == 'ubuntu-24.04'
183
183
# run: ./ci/run-docker.sh ${{ matrix.target }}
184
184
185
- # - name: Print test logs if available
186
- # if: always()
187
- # run: if [ -f "target/test-log.txt" ]; then cat target/test-log.txt; fi
188
- # shell: bash
185
+ - name : Print test logs if available
186
+ if : always()
187
+ run : |
188
+ if [ -f "target/test-log.txt" ]; then cat target/test-log.txt; fi
189
+ set -x
190
+ find . -name 'config.log' -exec cat {} ';'
191
+ shell : bash
189
192
190
193
# # Workaround to keep Docker cache smaller
191
194
# # https://github.com/docker/build-push-action/issues/252
Original file line number Diff line number Diff line change @@ -223,6 +223,7 @@ case "$target" in
223
223
# MSVC cannot link MPFR
224
224
* windows-msvc* ) ;;
225
225
# Targets that aren't cross compiled in CI work fine
226
+ i686-pc-windows-gnu) mflags+=(--features libm-test/build-mpfr --features gmp-mpfr-sys/force-cross) ;;
226
227
* windows-gnu* ) mflags+=(--features libm-test/build-mpfr) ;;
227
228
aarch64* apple* ) mflags+=(--features libm-test/build-mpfr) ;;
228
229
aarch64* linux* ) mflags+=(--features libm-test/build-mpfr) ;;
You can’t perform that action at this time.
0 commit comments