Skip to content

Refactor: Gfx model and image storage #376

Refactor: Gfx model and image storage

Refactor: Gfx model and image storage #376

Workflow file for this run

name: Linux
on: [push, pull_request, release]
jobs:
build:
name: ${{ matrix.config.name }} - Build and test
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu g++",
os: ubuntu-latest,
compiler: "g++"
}
- {
name: "Ubuntu clang++",
os: ubuntu-latest,
compiler: "clang++"
}
steps:
- name: Checkout atta
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install cmake xorg-dev curl
- name: Build
run: ./build.sh --jobs 2 --compiler ${{ matrix.config.compiler }}
- name: Test
run: ctest
working-directory: build/release