Skip to content

Commit 8a0cd42

Browse files
committed
Add a timeout for iOS testing.
1 parent ad578a9 commit 8a0cd42

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@ jobs:
3333
run-tests: true
3434

3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v4.1.7
3737

3838
- name: Extract config variables
3939
id: config-vars
4040
run: |
4141
PYTHON_VER=$(make config | grep "PYTHON_VER=" | cut -d "=" -f 2)
4242
echo "PYTHON_VER=${PYTHON_VER}" | tee -a ${GITHUB_OUTPUT}
43+
4344
- name: Set up Python
4445
uses: actions/[email protected]
4546
with:
@@ -51,6 +52,7 @@ jobs:
5152
run: |
5253
# Do the build for the requested target.
5354
make ${{ matrix.target }}
55+
5456
- name: Upload build artefacts
5557
uses: actions/[email protected]
5658
with:
@@ -72,8 +74,10 @@ jobs:
7274
# Use the development version of Briefcase
7375
# python -m pip install git+https://github.com/beeware/briefcase.git
7476
python -m pip install git+https://github.com/freakboy3742/briefcase.git@version-bumps
77+
7578
- name: Run support testbed check
7679
if: matrix.run-tests
80+
timeout-minutes: 10
7781
working-directory: Python-support-testbed
7882
# TODO - remove the template_branch option.
7983
run: briefcase run ${{ matrix.target }} Xcode --test ${{ matrix.briefcase-run-args }} -C support_package=\'../dist/Python-${{ steps.config-vars.outputs.PYTHON_VER }}-${{ matrix.target }}-support.custom.tar.gz\' -C template_branch=\'framework-lib\'

0 commit comments

Comments
 (0)