Skip to content

Commit

Permalink
Do checkout earlier, report info about Python from venv
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed May 25, 2024
1 parent b87ecb0 commit 7040a88
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
rm -fr *.p12
# security find-identity -v -p codesigning
- name: Git checkout
uses: actions/checkout@v4

- name: Set up Python from python.org
run: |
curl https://www.python.org/ftp/python/3.12.3/python-3.12.3-macos11.pkg --output python-installer.pkg
Expand All @@ -34,14 +37,12 @@ jobs:
python3-intel64 --version
python3-intel64 -c "import platform; print('macOS version:', platform.mac_ver()[0], platform.platform())"
- name: Checkout
uses: actions/checkout@v1

- name: Setup Virtual Environment
run: |
python3-intel64 -m venv venv
source venv/bin/activate
python -c "import sys; print('\n'.join(sys.path))"
python -c "import platform; print('macOS version:', platform.mac_ver()[0], platform.platform())"
- name: Install Dependencies
run: |
Expand Down

0 comments on commit 7040a88

Please sign in to comment.