We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fe08e commit 93c72d6Copy full SHA for 93c72d6
.github/workflows/pull.yml
@@ -21,6 +21,8 @@ jobs:
21
contents: read
22
strategy:
23
fail-fast: false
24
+ matrix:
25
+ python-version: [ "3.10", "3.11", "3.12" ]
26
with:
27
runner: linux.2xlarge
28
docker-image: ci-image:executorch-ubuntu-22.04-qnn-sdk
@@ -32,6 +34,10 @@ jobs:
32
34
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
33
35
conda activate "${CONDA_ENV}"
36
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
+
41
PYTHON_EXECUTABLE=python bash .ci/scripts/test_wheel_package_qnn.sh
42
43
# test-setup-linux-gcc:
0 commit comments