Skip to content

Commit 1f4da40

Browse files
committed
add different py versions back
1 parent 8398f9a commit 1f4da40

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/pull.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
contents: read
2222
strategy:
2323
fail-fast: false
24+
matrix:
25+
python-version: [ "3.10", "3.11", "3.12" ]
2426
with:
2527
runner: linux.2xlarge
2628
docker-image: ci-image:executorch-ubuntu-22.04-qnn-sdk
@@ -32,6 +34,10 @@ jobs:
3234
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
3335
conda activate "${CONDA_ENV}"
3436
37+
# Create a clean env for each python version
38+
conda create -y -n test_env_${{ matrix.python-version }} python=${{ matrix.python-version }}
39+
conda activate test_env_${{ matrix.python-version }}
40+
3541
PYTHON_EXECUTABLE=python bash .ci/scripts/test_wheel_package_qnn.sh
3642
3743
# test-setup-linux-gcc:

0 commit comments

Comments
 (0)