Skip to content

Commit

Permalink
Break out briefcase testing into its own job
Browse files Browse the repository at this point in the history
  • Loading branch information
AstraLuma committed May 22, 2024
1 parent e67afcd commit 3d14178
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit 3d14178

Please sign in to comment.