add mutex include to tconsole.h #4
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: Ubuntu 22.04 Build | |
on: [push] | |
jobs: | |
ubuntu-22-04-build: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:22.04 | |
steps: | |
- name: Install git | |
run: | | |
apt-get update -y | |
apt-get install -y git | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Git config safe directory | |
shell: bash | |
run: bash ./scripts/ubuntu-22.04/1.5-git-safe.sh | |
- name: Install Dependencies | |
run: bash ./scripts/ubuntu-22.04/1-install-deps.sh | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
runVcpkgInstall: true | |
- name: Create Build Environment | |
run: bash ./scripts/ubuntu-22.04/2-configure.sh | |
- name: Build Server | |
run: bash ./scripts/ubuntu-22.04/3-build.sh | |
- name: Archive server artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: BeamMP-Server-ubuntu | |
path: ./bin/BeamMP-Server | |