diff --git a/.cirrus.yml b/.cirrus.yml index 7b94a95e..25915960 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -103,15 +103,16 @@ task: install_script: - >- apt-get update || true; - apt-get install -qq -y git python3 python3-pip - - python3 .ci/install-wheels.py - - pip install briefcase + apt-get install -qq -y git python3 python3-pip python3-venv + - python3 -m venv /py + - /py/bin/python3 .ci/install-wheels.py + - /py/bin/pip install briefcase script: - - ${PY-python3} --version - - pip list - - briefcase new --no-input -Q bootstrap=PursuedPyBear - - cd helloworld && briefcase package + - /py/bin/python --version + - /py/bin/pip list + - /py/bin/briefcase new --no-input -Q bootstrap=PursuedPyBear + - cd helloworld && /py/bin/briefcase package use_compute_credits: $CIRRUS_BRANCH == 'staging'