Skip to content

Clang Tidy was disabled all along, may God have mercy #1002

Clang Tidy was disabled all along, may God have mercy

Clang Tidy was disabled all along, may God have mercy #1002

name: 🐧 Build Engine Linux
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install xorg-dev libglu1-mesa-dev gcc-11 g++-11
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_CORE_SAMPLES=ON -DBUILD_CORE_TESTS=ON -DBUILD_ENGINE_SAMPLES=ON
shell: bash
env:
CC: gcc-11
CXX: g++-11
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all
- name: Test
working-directory: ${{github.workspace}}/build/core/tests
run: ./cubos-core-tests