Skip to content

Commit 71f6708

Browse files
committed
debugging ci
1 parent ab47e79 commit 71f6708

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

libs/build-nss-macos-cross.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ eval "LDFLAGS=\$${RUST_ANDROID_PREFIX}_LDFLAGS_${NSS_TARGET//-/_}"
5757
# Build NSPR
5858
NSPR_BUILD_DIR=$(mktemp -d)
5959
pushd "${NSPR_BUILD_DIR}"
60-
"${NSS_SRC_DIR}"/nspr/configure \
60+
if ! "${NSS_SRC_DIR}"/nspr/configure \
6161
STRIP="${STRIP}" \
6262
RANLIB="${RANLIB}" \
6363
AR="${AR}" \
@@ -70,7 +70,11 @@ pushd "${NSPR_BUILD_DIR}"
7070
--target="${NSS_TARGET}" \
7171
--enable-64bit \
7272
--disable-debug \
73-
--enable-optimize
73+
--enable-optimize; then
74+
echo "=== NSPR configure failed, dumping config.log ==="
75+
cat config.log
76+
exit 1
77+
fi
7478
make
7579
popd
7680

taskcluster/scripts/toolchain/desktop-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ git submodule update --init
55
./taskcluster/scripts/toolchain/setup-fetched-rust-toolchain.sh
66
. ./taskcluster/scripts/toolchain/cross-compile-setup.sh
77
pushd libs
8-
./build-all.sh darwin-x86-64
98
./build-all.sh darwin-aarch64
9+
./build-all.sh darwin-x86-64
1010
popd
1111
mkdir -p "$UPLOAD_DIR"
1212
tar -czf "$UPLOAD_DIR"/macos.tar.gz libs/desktop

0 commit comments

Comments
 (0)