Sort the Open World sub-menu by world name. (#370) #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu Qt CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [ubuntu-20.04, ubuntu-22.04] | |
include: | |
# - name: ubuntu-18.04 | |
# os: ubuntu-18.04 | |
# artifact: minutor | |
- name: ubuntu-20.04 | |
os: ubuntu-20.04 | |
artifact: minutor | |
- name: ubuntu-22.04 | |
os: ubuntu-22.04 | |
artifact: minutor | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Qt | |
run: | | |
sudo apt-get update | |
sudo apt-get install qtbase5-dev qt5-qmake qtbase5-dev-tools -y | |
- name: Create BUILD folder | |
run: | | |
mkdir ../build | |
- name: Build (Ubuntu) | |
working-directory: ../build | |
run: | | |
qmake ${{ github.workspace }}/${{ matrix.artifact }}.pro | |
make | |
env: | |
# only needed for Ubuntu-16.04 | |
LD_LIBRARY_PATH: '${{ runner.workspace }}/Qt/5.5/gcc_64/lib' | |
- name: Archive build result | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Binary ${{ matrix.name }} | |
path: ${{ runner.workspace }}/build/${{ matrix.artifact }} |