-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use production packages. * Updated populating cache for compat tests. * Readded compat tests through GHA. * Readded compat tests through GHA, take 2. * Readded compat tests through GHA, take 3. * Run docker builds and tests as a regular user. * Run docker builds and tests as a regular user, take 2 * Run docker builds and tests as a regular user, take 3 * Run docker builds and tests as a regular user, take 4 * Run docker builds and tests as a regular user, take 5 * Put paxctl where it's easier to find. * Also try test_ci2 compat tests. * Install sudo for elevated tests. * Final tweaks. * Final tweaks, take 2. * Final tweaks, take 3. * Changes after own review. * Changes after own review, take two. * Changes after own review, take three.
- Loading branch information
Showing
5 changed files
with
73 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# When building a new major Python version, e.g. 3.11->3.12, | ||
# update this in advance (e.g. use "[email protected]"), | ||
# and remove BUILD_ENV_* files (e.g. with `./build.sh clean -a`). | ||
PYTHON_CONFIGURATION="[email protected].ac6595f" | ||
PYTHON_CONFIGURATION="[email protected].bb41ace" | ||
# This is defined as a Bash array of options to be passed to commands. | ||
BASE_REQUIREMENTS=("chevah-brink==1.0.15" "paver==1.3.4") | ||
# Use our private PyPi server instead of the default one set in pythia.sh. | ||
PIP_INDEX_URL="https://bin.chevah.com:20443/pypi/simple" | ||
# Use our production server instead of the GitHub releases set by default. | ||
BINARY_DIST_URI="https://bin.chevah.com:20443/production" | ||
# For testing packages, make sure this one is the last uncommented instance: | ||
BINARY_DIST_URI="https://bin.chevah.com:20443/testing" | ||
#BINARY_DIST_URI="https://bin.chevah.com:20443/testing" | ||
# This directory is used by the Python runtime. | ||
CHEVAH_BUILD_DIR="build-py3" |