From 29dd087ac5406e97589c986fb768821bd8683b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Wed, 21 Oct 2020 17:07:14 +0200 Subject: [PATCH] GitHub Actions: Compile Tiled on Ubuntu 20.04 This build is for testing purposes and should build on the Ubuntu most people are expected to use. --- .../workflows/{ubuntu-latest.yml => ubuntu-20.04.yml} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) rename .github/workflows/{ubuntu-latest.yml => ubuntu-20.04.yml} (74%) diff --git a/.github/workflows/ubuntu-latest.yml b/.github/workflows/ubuntu-20.04.yml similarity index 74% rename from .github/workflows/ubuntu-latest.yml rename to .github/workflows/ubuntu-20.04.yml index 169e8ee5ce..2ea24b4555 100644 --- a/.github/workflows/ubuntu-latest.yml +++ b/.github/workflows/ubuntu-20.04.yml @@ -1,11 +1,11 @@ -name: Compile on latest Ubuntu +name: Compile on Ubuntu 20.04 on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repository @@ -18,8 +18,10 @@ jobs: - name: Setup qbs run: | + qbs --version qbs setup-toolchains --detect - qbs setup-qt --detect + qbs config defaultProfile gcc - name: Build - run: qbs build profile:qt-5-9-5 + run: | + qbs build