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 6435abc
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,18 @@ 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
- source /py/activate; python3 .ci/install-wheels.py
- /py/bin/pip install briefcase

info_script:
- /py/bin/python --version
- /py/bin/pip list

script:
- ${PY-python3} --version
- pip list
- briefcase new --no-input -Q bootstrap=PursuedPyBear
- cd helloworld && briefcase package
- /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 6435abc

Please sign in to comment.