Skip to content

Program: safety checks for non-existing uniforms/textures. #113

Program: safety checks for non-existing uniforms/textures.

Program: safety checks for non-existing uniforms/textures. #113

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-20.04
cmake-opts:
- os: windows-2019
cmake-opts: -A x64
- os: macos-11
cmake-opts:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Dependencies
if: startsWith(matrix.os, 'ubuntu')
shell: bash
run: sudo apt-get update -y && sudo apt-get install -yq xorg-dev libgtk-3-dev libasound2-dev libnotify-dev
- name: Configure
shell: bash
working-directory: ${{runner.workspace}}
run: |
cmake -E make_directory ${{runner.workspace}}/build
cmake -S $GITHUB_WORKSPACE -B build/ -DCMAKE_BUILD_TYPE=Release ${{matrix.cmake-opts}}
- name: Build
working-directory: ${{runner.workspace}}
shell: bash
run: cmake --build build/ --config Release