diff options
author | Florian Bruhin <me@the-compiler.org> | 2022-06-22 09:42:05 +0200 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2022-06-22 09:42:05 +0200 |
commit | 7a5eac4165d19cac3e757a205b2ee612e4a438aa (patch) | |
tree | a703398ced998cdfd5d29011b346c0ff46a1b42e /.github/workflows/nightly.yml | |
parent | aec6014242f60cba764e3a75645a13cd26f7f6a6 (diff) | |
download | qutebrowser-7a5eac4165d19cac3e757a205b2ee612e4a438aa.tar.gz qutebrowser-7a5eac4165d19cac3e757a205b2ee612e4a438aa.zip |
ci: Actually build Qt 6 for Qt 6 builds
Diffstat (limited to '.github/workflows/nightly.yml')
-rw-r--r-- | .github/workflows/nightly.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 850699fc5..abfb09689 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,33 +16,43 @@ jobs: include: - os: macos-10.15 branch: master + toxenv: build-release - os: windows-2019 args: --64bit branch: master + toxenv: build-release - os: windows-2019 args: --32bit branch: master + toxenv: build-release - os: macos-10.15 args: --debug branch: master + toxenv: build-release - os: windows-2019 args: --64bit --debug branch: master + toxenv: build-release - os: windows-2019 args: --32bit --debug branch: master + toxenv: build-release - os: macos-10.15 branch: qt6-v2 + toxenv: build-release-qt6 - os: windows-2019 args: --64bit branch: qt6-v2 + toxenv: build-release-qt6 - os: macos-10.15 args: --debug branch: qt6-v2 + toxenv: build-release-qt6 - os: windows-2019 args: --64bit --debug branch: qt6-v2 + toxenv: build-release-qt6 runs-on: "${{ matrix.os }}" timeout-minutes: 30 steps: @@ -72,7 +82,7 @@ jobs: run: | 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 }}" + run: "tox -e ${{ matrix.toxenv }} -- --asciidoc ../asciidoc/asciidoc.py --gh-token ${{ secrets.GITHUB_TOKEN }} ${{ matrix.args }}" - name: Wait 90s to avoid upload errors if: "contains(matrix.args, '--32bit')" run: "sleep 90" |