Browse Source

Merge pull request #17817 from Chocobo1/modules

GHA CI: only install required Qt components
adaptive-webui-19844
Chocobo1 2 years ago committed by GitHub
parent
commit
3b0ac0962e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/ci_macos.yaml
  2. 1
      .github/workflows/ci_ubuntu.yaml
  3. 1
      .github/workflows/ci_windows.yaml
  4. 3
      .github/workflows/coverity-scan.yml

2
.github/workflows/ci_macos.yaml

@ -54,6 +54,8 @@ jobs:
uses: jurplel/install-qt-action@v3 uses: jurplel/install-qt-action@v3
with: with:
version: ${{ matrix.qt_version }} version: ${{ matrix.qt_version }}
archives: qtbase qtdeclarative qtsvg qttools
# Not sure why Qt made a hard dependency on qtdeclarative, try removing it when Qt > 6.4.0
- name: Install libtorrent - name: Install libtorrent
run: | run: |

1
.github/workflows/ci_ubuntu.yaml

@ -43,6 +43,7 @@ jobs:
uses: jurplel/install-qt-action@v3 uses: jurplel/install-qt-action@v3
with: with:
version: ${{ matrix.qt_version }} version: ${{ matrix.qt_version }}
archives: icu qtbase qtsvg qttools
- name: Install libtorrent - name: Install libtorrent
run: | run: |

1
.github/workflows/ci_windows.yaml

@ -77,6 +77,7 @@ jobs:
uses: jurplel/install-qt-action@v3 uses: jurplel/install-qt-action@v3
with: with:
version: "6.4.0" version: "6.4.0"
archives: qtbase qtsvg qttools
- name: Install libtorrent - name: Install libtorrent
run: | run: |

3
.github/workflows/coverity-scan.yml

@ -24,7 +24,8 @@ jobs:
- name: Install Qt - name: Install Qt
uses: jurplel/install-qt-action@v3 uses: jurplel/install-qt-action@v3
with: with:
version: "6.3.0" version: "6.4.0"
archives: qtbase qtsvg qttools
- name: Install libtorrent - name: Install libtorrent
run: | run: |

Loading…
Cancel
Save