Skip to content

Commit

Permalink
GitHub Actions: Compile Tiled on Ubuntu 20.04
Browse files Browse the repository at this point in the history
This build is for testing purposes and should build on the Ubuntu most
people are expected to use.
  • Loading branch information
bjorn committed Oct 21, 2020
1 parent 8a358af commit 29dd087
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 29dd087

Please sign in to comment.