##// END OF EJS Templates
contrib: propagate `pytype` failures outside of `check-pytype.sh`...
contrib: propagate `pytype` failures outside of `check-pytype.sh` A recent series got landed with a pytype failure, because it wasn't propagated to the CI caller (see c47fe7fd312d). I suspect it started recently with 069735062524, because failures have been flagged in the past. The shebang line needs to be specific to bash, otherwise it ignores this non-POSIX extension. I'm not aware of a POSIX flavor of this option.

File last commit:

r53167:6aa4ee2b stable
r53296:0c4832bf stable
Show More
build-macos-wheels.sh
35 lines | 1.1 KiB | application/x-sh | BashLexer
#!/bin/sh
# This is a convenience script to build all of the wheels outside of the CI
# system. It requires the cibuildwheel package to be installed, and the
# executable on PATH, as well as `msgfmt` from gettext, which can be installed
# with `brew` as follows:
#
# $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# $ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
# <logout>
# $ brew install gettext
#
# A system-wide installation of the version of python corresponding to each
# wheel is required. They can be installed by this script by setting `CI=true`
# in the environment before running it, and providing the `sudo` password when
# prompted.
set -e
# Build translations; requires msgfmt on PATH.
export MERCURIAL_SETUP_FORCE_TRANSLATIONS=1
if ! which msgfmt 2>/dev/null 1>/dev/null; then
echo "msgfmt executable not found" >&2
exit 1
fi
# Prevent building pypy wheels, which is broken.
export CIBW_SKIP=pp*
export CIBW_ARCHS=universal2
# TODO: purge the repo?
cibuildwheel --output-dir dist/wheels