Added CI, testing builds for Linux, MacOS & Windows

This commit is contained in:
CPunch 2022-03-14 00:31:30 -05:00
parent cbe8715b02
commit 0fc94802b1
1 changed files with 64 additions and 0 deletions

64
.github/workflows/check-build.yaml vendored Normal file
View File

@ -0,0 +1,64 @@
name: Check Builds
on:
push:
paths:
- lib/**
- bot/**
- cnc/**
- shell/**
- tools/**
- cmake-modules/**
- .github/workflows/check-build.yaml
- CMakeLists.txt
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
run: sudo apt install clang cmake -y
- name: Create CMake build files
run: cmake -B build
- name: Check compilation
run: cmake --build build
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: laika-demo-binaries-ubuntu
path: bin
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Create CMake build files
run: cmake -B build
- name: Check compilation
run: cmake --build build
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: laika-demo-binaries-windows
path: bin
macOS-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Create CMake build files
run: cmake -B build
- name: Check compilation
run: cmake --build build
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: laika-demo-binaries-macos
path: bin