squash commit for adding github actions

This commit is contained in:
Lion
2021-01-30 22:53:03 +01:00
committed by Lion Kortlepel
parent d0a7b56e75
commit a20f632e3e
3 changed files with 71 additions and 0 deletions

30
.github/workflows/cmake-linux.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
name: CMake Linux Build
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libz-dev rapidjson-dev libcurl4-openssl-dev liblua5.3
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build-linux
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/build-linux
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_COMPILER=g++-10
- name: Build
working-directory: ${{github.workspace}}/build-linux
shell: bash
run: cmake --build . --config $BUILD_TYPE