Skip to content

Commit

Permalink
ci: Try debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Mar 29, 2021
1 parent 78ce753 commit 2a54540
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/bleeding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
args: --64bit
- os: windows-2019
args: --32bit
- os: macos-10.15
debug: debug
- os: windows-2019
args: --64bit
debug: debug
- os: windows-2019
args: --32bit
debug: debug
runs-on: "${{ matrix.os }}"
timeout-minutes: 30
steps:
Expand All @@ -61,6 +69,11 @@ jobs:
run: |
python -m pip install -U pip
python -m pip install -U -r misc/requirements/requirements-tox.txt
- name: Set up debugging build
if: "${{ matrix.debug }}"
run: |
echo "PYINSTALLER_DEBUG=1" >> $GITHUB_ENV
sed -i '' '/.-d., .--debug.,/s/$/ default=True,/' qutebrowser/qutebrowser.py
- name: Run tox
run: "tox -e build-release -- --asciidoc ../asciidoc/asciidoc.py --gh-token ${{ secrets.GITHUB_TOKEN }} ${{ matrix.args }}"
- name: Upload artifacts
Expand Down

0 comments on commit 2a54540

Please sign in to comment.