Skip to content

Commit

Permalink
ci: Don't install Qt when running on self-hosted
Browse files Browse the repository at this point in the history
The previous condition doesn't seem to work
  • Loading branch information
iamsergio committed Jan 10, 2025
1 parent 07e0b23 commit b4026dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,12 @@ jobs:

steps:
- name: Install Qt ${{ matrix.preset.qt_version }} with options and default aqtversion
if: env.IS_SELFHOSTED == null || env.IS_SELFHOSTED == ''
if: ${{ !defined(env.IS_SELFHOSTED) }}
uses: jurplel/install-qt-action@v4
with:
version: ${{ matrix.preset.qt_version }}
cache: true


- name: Install dependencies on Ubuntu (${{ join(matrix.preset.apt_pgks, ' ') }})
if: ${{ runner.os == 'Linux' && matrix.preset.apt_pgks }}
run: |
Expand Down

0 comments on commit b4026dd

Please sign in to comment.