mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-21 11:43:04 +00:00
* update workflows to accomodate new requirements * add boost to vkpkg * try without boost again * use boost just boost * might cache vcpkg or might not idk * dont pull everything in boost * clean up includes * fix 1 * fix 2 * fix 3 * fix 4 * fix id 6 * remove libssl again * move to boost 1.71 * add boost to windows cmake * change from boost 1.71 to 1.70 * fix cmake again * remove version because f cmake * remove stuff again * fix my mistakes * fix linker args for unix * openssl * add openssl to vcpkg * uhh change whats linked * rename OpenSSL to OPENSSL????
35 lines
902 B
YAML
35 lines
902 B
YAML
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 liblua5.3 libssl-dev
|
|
sudo add-apt-repository ppa:mhier/libboost-latest
|
|
sudo apt-get install -y libboost1.70-dev libboost1.70
|
|
|
|
- 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
|
|
|