Skip to content

Merge pull request #24 from fszewczyk/shadow-maps-in-atlas #50

Merge pull request #24 from fszewczyk/shadow-maps-in-atlas

Merge pull request #24 from fszewczyk/shadow-maps-in-atlas #50

Workflow file for this run

name: Linux
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
name: ${{ matrix.conf.name }} - Build
runs-on: ${{ matrix.conf.os }}
strategy:
fail-fast: false
matrix:
conf:
- { name: "Ubuntu g++", os: ubuntu-latest, compiler: "g++" }
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Update submodules
run: git submodule update --init --recursive
- name: Dependencies on Ubuntu
if: startsWith(matrix.conf.os, 'ubuntu')
run: sudo apt-get update && sudo apt-get install xorg-dev
- name: Build
env:
CXX: ${{matrix.conf.compiler}}
run: ./build.sh