Skip to content

UPDATE

UPDATE #123

Workflow file for this run

# See: https://github.com/cristianadam/HelloWorld/blob/master/.github/workflows/build_cmake.yml
name: CI
on:
push:
paths-ignore:
- '**/*.md'
- 'Assets/**'
- '.gitattributes'
- '.gitignore'
jobs:
ci:
strategy:
fail-fast: false
matrix:
platform:
- {
name: "Windows MSVC",
image: windows-latest,
os: windows,
cc: cl,
cxx: cl
}
- {
name: "Ubuntu GCC",
image: ubuntu-latest,
os: ubuntu,
cc: gcc-9,
cxx: g++-9
}
- {
name: "MacOS Clang",
image: macos-latest,
os: macos,
cc: clang,
cxx: clang++
}
config:
- {
name: "Tool",
cfg: Debug
}
- {
name: "Debug",
cfg: RelWithDebInfo
}
- {
name: "Release",
cfg: Release
}
name: ${{ matrix.platform.name }}-${{ matrix.config.name }}
runs-on: ${{ matrix.platform.image }}
steps:
- uses: actions/checkout@v2
- name: InstallDependencies
run: bash UberScript.sh -i
- name: GenerateProject
run: bash UberScript.sh -g
- name: Build
run: bash UberScript.sh -b -c ${{ matrix.config.cfg }}
- name: Tests
run: bash UberScript.sh -t -c ${{ matrix.config.cfg }}