Integrate netImgui into UnrealLibretro plugin #3
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: CI Build | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y build-essential cmake tcc | |
- name: Configure CMake (Linux GCC) | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
- name: Build (GCC) | |
run: cmake --build build --config Release | |
# - name: Configure CMake (Linux TCC) | |
# run: cmake -S . -B build-tcc -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=tcc | |
# - name: Build (TCC) | |
# run: cmake --build build-tcc --config Release | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Install dependencies | |
run: brew install cmake | |
- name: Configure CMake (macOS Clang) | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build build --config Release | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Install dependencies | |
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' | |
- name: Configure CMake (Windows MSVC) | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build build --config Release |