diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-01 15:54:44 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-04-01 18:06:27 +0200 |
| commit | cceebb90abd09685577b1b60ac74715f1ad08d9e (patch) | |
| tree | 39ed22e9cffbfd087ff174d887206b840b14b5aa /.github/workflows | |
| parent | 7f87ccbec9ddcfb923d8ae9840a2c7ebe885ebe2 (diff) | |
| download | qxmpp-cceebb90abd09685577b1b60ac74715f1ad08d9e.tar.gz | |
Test with Qt 5.9 and Qt 5.14
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/tests.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 89a6d2bb..5ee0381c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,12 +10,22 @@ jobs: CONFIG: ${{ matrix.config }} strategy: matrix: - config: [minimal, full, full-debug] os: [ubuntu-latest, macos-latest] + config: [minimal, full, full-debug] + qt_version: ['5.14.2'] + include: + - os: ubuntu-latest + config: full + qt_version: 5.9 + - os: macos-latest + config: full + qt_version: 5.9 steps: - uses: actions/checkout@v2 - name: Install Qt uses: jurplel/install-qt-action@v2 + with: + version: ${{ matrix.qt_version }} - name: Install extra packages run: tests/travis/install-build-depends - name: Disable OS X firewall |
