build/install improvements #1
Workflow file for this run
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: build | ||
on: | ||
push: | ||
branches: | ||
- '*' # replace with branch if you only want a specific branch | ||
branches-ignore: | ||
- client-rewrite | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.18 | ||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
- name: Build teamserver | ||
run: make ts-build | ||
- name: Build client | ||
run: make client-build |