Add HTML CI #132
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: Non regression tests for TimedPetriNetEditor | |
on: | |
workflow_dispatch: | |
branches: | |
- master | |
- dev-refactor | |
push: | |
branches: | |
- master | |
- dev-refactor | |
pull_request: | |
branches: | |
- master | |
- dev-refactor | |
jobs: | |
build_html5: | |
name: Build with Emscripten | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install system packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install pkg-config libglfw3-dev libglew-dev libmosquitto-dev | |
- name: Checkout TimedPetriNetEditor | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Compile TimedPetriNetEditor | |
run: | | |
make download-external-libs | |
make compile-external-libs | |
make -j`nproc --all` | |
- name: Deploy | |
run: | | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
git config --global user.name 'GitHub CI' | |
git config --global user.email 'github-ci@users.noreply.github.com' | |
git checkout gh-pages | |
git add build/TimedPetriNetEditor.* | |
git commit -m "Automated commit" | |
git push | |
non_regression_linux: | |
name: Non regression tests on Linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install system packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install pkg-config lcov libdw-dev libglfw3-dev libglew-dev libmosquitto-dev | |
- name: Checkout TimedPetriNetEditor | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Compile TimedPetriNetEditor | |
run: | | |
make download-external-libs | |
make compile-external-libs | |
make -j`nproc --all` | |
- name: Download, configure and install Google test | |
run: | | |
wget https://github.com/google/googletest/archive/release-1.11.0.tar.gz | |
tar xf release-1.11.0.tar.gz | |
cd googletest-release-1.11.0 | |
cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON . | |
sudo make install | |
- name: Do non regression tests | |
run: | | |
cd tests | |
make -j`nproc --all` | |
./build/TimedPetriNetEditor-UnitTest | |
- name: Deploy | |
uses: actions/upload-artifact@v3 | |
with: | |
name: TimedPetriNetEditor-linux | |
path: build/TimedPetriNetEditor | |
non_regression_macos: | |
name: Non regression tests on MacOS X | |
runs-on: macos-latest | |
steps: | |
- name: Install system packages | |
run: | | |
brew install pkg-config mosquitto glfw3 glew | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Compile TimedPetriNetEditor | |
run: | | |
make download-external-libs | |
make compile-external-libs | |
make -j`sysctl -n hw.logicalcpu` | |
- name: Download, configure and install Google test | |
run: | | |
wget https://github.com/google/googletest/archive/release-1.11.0.tar.gz | |
tar xf release-1.11.0.tar.gz | |
cd googletest-release-1.11.0 | |
cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON . | |
sudo make install | |
- name: Do non regression tests | |
run: | | |
cd tests | |
make -j`sysctl -n hw.logicalcpu` | |
./build/TimedPetriNetEditor-UnitTest | |
- name: Create the DMG file | |
run: | | |
hdiutil create -format UDZO -srcfolder build/TimedPetriNetEditor.app build/TimedPetriNetEditor.dmg | |
- name: Deploy | |
uses: actions/upload-artifact@v3 | |
with: | |
name: TimedPetriNetEditor-macos | |
path: build/TimedPetriNetEditor.dmg |