Compare commits
No commits in common. "7894955ff59eb04593e61ed5fda2118928a4cb9b" and "bc23918637dc835adffbdfee320c58e4484c741e" have entirely different histories.
7894955ff5
...
bc23918637
5 changed files with 1 additions and 49 deletions
|
@ -1,14 +0,0 @@
|
|||
name: Publish doxygen documentation to seodisparate.com
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
doxygen-gen-and-publish:
|
||||
runs-on: archLinux
|
||||
steps:
|
||||
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/EntityComponentMetaSystem.git ECMS
|
||||
- run: cd ECMS && git checkout master
|
||||
- run: cd ECMS && doxygen
|
||||
- run: rsync -r --delete ECMS/doxygen_html/html/ /srv/http/ECMS_docs/
|
|
@ -1,14 +0,0 @@
|
|||
name: Run UnitTests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build-and-run-unittests:
|
||||
runs-on: archLinux
|
||||
steps:
|
||||
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/EntityComponentMetaSystem.git ECMS
|
||||
- run: cd ECMS && git checkout $GITHUB_REF_NAME
|
||||
- run: cd ECMS && cmake -S src -B buildDebug -DCMAKE_BUILD_TYPE=Debug
|
||||
- run: make -C ECMS/buildDebug && ./ECMS/buildDebug/UnitTests
|
18
.github/workflows/unittests.yml
vendored
18
.github/workflows/unittests.yml
vendored
|
@ -1,18 +0,0 @@
|
|||
name: Run UnitTests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build-and-run-unittests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: sudo /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install libgtest-dev cmake
|
||||
- name: Get sources
|
||||
run: git clone --depth=1 --no-single-branch https://github.com/Stephen-Seo/EntityComponentMetaSystem.git ECMS && cd ECMS && git checkout $GITHUB_REF_NAME
|
||||
- name: Build UnitTests
|
||||
run: cd ECMS && cmake -S src -B buildDebug -DCMAKE_BUILD_TYPE=Debug && make -C buildDebug
|
||||
- name: Run UnitTests
|
||||
run: ./ECMS/buildDebug/UnitTests
|
|
@ -9,8 +9,6 @@ built and run using cmake (gtest is a dependency).
|
|||
|
||||
[Check this repository's gh-pages documentation on ECMS](https://stephen-seo.github.io/EntityComponentMetaSystem/)
|
||||
|
||||
[Alternatively, check out the doxygen docs hosted on my website](https://seodisparate.com/ecms_docs/)
|
||||
|
||||
# Compiling the UnitTests
|
||||
|
||||
Create a build directory.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
cmake_minimum_required(VERSION 3.22)
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
project(EntityComponentSystem)
|
||||
|
||||
set(EntityComponentSystem_HEADERS
|
||||
|
|
Loading…
Reference in a new issue