Skip to content

Commit

Permalink
venv reproducer
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jan 14, 2024
1 parent 92beb17 commit dde5b0b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Python test bitness

on:
push:
branches:
- venv-reproducer
workflow_dispatch:
# allow manual runs on branches without a PR

jobs:
venv:
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: test
run: |
sudo apt-get update
sudo apt-get install -y python3-distutils
python3 -m pip install virtualenv
python3 -m venv cp311-1
python3 -m virtualenv cp311-2
ln -sf $(which python3) /usr/local/bin/python3
/usr/local/bin/python3 -m venv cp311-3
/usr/local/bin/python3 -m virtualenv cp311-4

0 comments on commit dde5b0b

Please sign in to comment.