Skip to content

A new screenshot with TTF ImGui fonts #33

A new screenshot with TTF ImGui fonts

A new screenshot with TTF ImGui fonts #33

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
cmake-build:
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows - MSVC 2022",
os: windows-latest,
build_type: "Debug",
cc: "cl",
cxx: "cl",
generators: "Visual Studio 17 2022",
cmake_args: "-DIGL_WITH_TRACY=ON"
}
- {
name: "Ubuntu - Clang",
os: ubuntu-latest,
build_type: "Debug",
cc: "clang-15",
cxx: "clang++-15",
generators: "Unix Makefiles",
}
# - {
# name: "Ubuntu - GCC",
# os: ubuntu-latest,
# build_type: "Debug",
# cc: "gcc-12",
# cxx: "g++-12",
# generators: "Unix Makefiles"
# }
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- if: startsWith(matrix.config.os, 'ubuntu')
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install -y gcc-12 clang-15 xorg-dev libxinerama-dev libxcursor-dev libgles2-mesa-dev libegl1-mesa-dev libglfw3-dev libglew-dev libstdc++-12-dev
- name: Prepare Vulkan SDK
uses: humbletim/setup-vulkan-sdk@v1.2.0
with:
vulkan-query-version: 1.3.204.0
vulkan-components: Vulkan-Headers, Vulkan-Loader
vulkan-use-cache: true
- name: Get the number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
- name: Build
shell: bash
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
run: |
cmake ${{ env.CMAKE_GENERATOR }} -S "${{ github.workspace }}" -B build ${{ matrix.config.cmake_args }}
cd build
cmake --build . --parallel ${{ steps.cpu-cores.outputs.count }}