Skip to content

Commit

Permalink
release: add script to build release artifacts for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
indygreg committed May 18, 2020
1 parent eccf489 commit 564fa81
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions release-macos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

set -eo pipefail

export PYBUILD_RELEASE_TAG=$(date -u '+%Y%m%dT%H%M')

./build-macos.py --python cpython-3.7 --optimizations debug
./build-macos.py --python cpython-3.7 --optimizations pgo
./build-macos.py --python cpython-3.8 --optimizations debug
./build-macos.py --python cpython-3.8 --optimizations pgo

0 comments on commit 564fa81

Please sign in to comment.