forked from pex-tool/pex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,45 @@ jobs: | |
- pypy310-pip20 | ||
- pypy310-pip22_3_1 | ||
- pypy310-pip23_1_2 | ||
steps: | ||
- name: Free Up Disk Space | ||
uses: jlumbroso/[email protected] | ||
with: | ||
android: true # ~14GB | ||
dotnet: true # ~2GB | ||
tool-cache: true # ~12GB | ||
|
||
# Too little space savings or too slow. | ||
haskell: false | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: false | ||
- name: Checkout Pex | ||
uses: actions/checkout@v3 | ||
with: | ||
# We need branches and tags for some ITs. | ||
fetch-depth: 0 | ||
# Some ITs need this for VCS URLs of the form git+ssh://[email protected]/... | ||
- name: Setup SSH Agent | ||
uses: webfactory/[email protected] | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | ||
if: env.SSH_PRIVATE_KEY != '' | ||
with: | ||
ssh-private-key: ${{ env.SSH_PRIVATE_KEY }} | ||
- name: Run Tests | ||
run: | | ||
TERM=xterm \ | ||
BASE_MODE=pull \ | ||
CACHE_MODE=pull \ | ||
./dtox.sh -e ${{ matrix.tox-env }} -- ${{ env._PEX_TEST_POS_ARGS }} | ||
linux-tests-2: | ||
name: ./dtox.sh -e ${{ matrix.tox-env }} | ||
needs: org-check | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
tox-env: | ||
- py27-pip20-integration | ||
- py37-pip22_3_1-integration | ||
- py37-pip23_1_2-integration | ||
|
@@ -98,7 +137,10 @@ jobs: | |
ssh-private-key: ${{ env.SSH_PRIVATE_KEY }} | ||
- name: Run Tests | ||
run: | | ||
BASE_MODE=pull CACHE_MODE=pull ./dtox.sh -e ${{ matrix.tox-env }} -- ${{ env._PEX_TEST_POS_ARGS }} | ||
TERM=xterm \ | ||
BASE_MODE=pull \ | ||
CACHE_MODE=pull \ | ||
./dtox.sh -e ${{ matrix.tox-env }} -- ${{ env._PEX_TEST_POS_ARGS }} | ||
mac-tests: | ||
name: tox -e ${{ matrix.tox-env }} | ||
needs: org-check | ||
|
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