Fix issue #332: Immediate, watches and vector watch is not able to extract columns from matrix using mat[<column>]-operator #476
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install libs | |
run: sudo apt install libsdl2-dev libglew-dev libglm-dev libgtk-3-dev | |
- name: cmake | |
run: sudo cmake -DCMAKE_CXX_COMPILER=/usr/bin/g++-9 -DCMAKE_C_COMPILER=/usr/bin/gcc-9 . | |
- name: make | |
run: sudo make |