mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Merge Documentation and Emscripten workflow (#166)
Unify Documentation and Emscripten workflow
This commit is contained in:
parent
2f9563a91b
commit
6a19371c9c
34
.github/workflows/documentation.yaml
vendored
34
.github/workflows/documentation.yaml
vendored
@ -1,34 +0,0 @@
|
|||||||
name: Documentation
|
|
||||||
|
|
||||||
# Triggers the workflow on push events only for the master branch
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-documentation:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install Doxygen/Graphviz
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install doxygen graphviz
|
|
||||||
|
|
||||||
- name: Build HTML documentation
|
|
||||||
run: |
|
|
||||||
cmake -S . -B build
|
|
||||||
cmake --build build --target doc
|
|
||||||
|
|
||||||
# Deploy the HTML documentation to GitHub Pages
|
|
||||||
- name: GH Pages Deployment
|
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
publish_dir: build/doc/doxygen/html/
|
|
||||||
enable_jekyll: false
|
|
||||||
allow_empty_commit: false
|
|
||||||
force_orphan: true
|
|
||||||
publish_branch: gh-pages
|
|
37
.github/workflows/linux-emscripten.yaml
vendored
37
.github/workflows/linux-emscripten.yaml
vendored
@ -8,13 +8,40 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
name: Linux Emscripten
|
name: Linux Emscripten
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
DOCUMENTATION: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: seanmiddleditch/gha-setup-ninja@master
|
- uses: seanmiddleditch/gha-setup-ninja@master
|
||||||
- uses: mymindstorm/setup-emsdk@v7
|
- uses: mymindstorm/setup-emsdk@v7
|
||||||
|
|
||||||
|
- name: Install Doxygen/Graphviz
|
||||||
|
if: fromJSON(env.DOCUMENTATION)
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install doxygen graphviz
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: >
|
run: |
|
||||||
mkdir build;
|
emcmake cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -S . -B build
|
||||||
cd build;
|
cmake --build build
|
||||||
emcmake cmake ..;
|
|
||||||
cmake --build . --config Release;
|
- name: Build documentation
|
||||||
|
if: fromJSON(env.DOCUMENTATION)
|
||||||
|
run: |
|
||||||
|
cd build
|
||||||
|
cmake --build . --target doc
|
||||||
|
# Copy emscripten built examples to the doxygen output directory for deployment
|
||||||
|
rsync -amv --include='*/' --include='*.html' --include='*.js' --include='*.wasm' --exclude='*' examples doc/doxygen/html
|
||||||
|
|
||||||
|
# Deploy the HTML documentation to GitHub Pages
|
||||||
|
- name: GH Pages Deployment
|
||||||
|
if: fromJSON(env.DOCUMENTATION)
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: build/doc/doxygen/html/
|
||||||
|
enable_jekyll: false
|
||||||
|
allow_empty_commit: false
|
||||||
|
force_orphan: true
|
||||||
|
publish_branch: gh-pages
|
||||||
|
@ -48,8 +48,8 @@ endfunction()
|
|||||||
|
|
||||||
if (EMSCRIPTEN)
|
if (EMSCRIPTEN)
|
||||||
#string(APPEND CMAKE_CXX_FLAGS " -s ASSERTIONS=1")
|
#string(APPEND CMAKE_CXX_FLAGS " -s ASSERTIONS=1")
|
||||||
string(APPEND CMAKE_CXX_FLAGS " -s ASYNCIFY")
|
|
||||||
string(APPEND CMAKE_CXX_FLAGS " -s USE_PTHREADS")
|
string(APPEND CMAKE_CXX_FLAGS " -s USE_PTHREADS")
|
||||||
string(APPEND CMAKE_CXX_FLAGS " -s PROXY_TO_PTHREAD")
|
string(APPEND CMAKE_EXE_LINKER_FLAGS " -s ASYNCIFY")
|
||||||
|
string(APPEND CMAKE_EXE_LINKER_FLAGS " -s PROXY_TO_PTHREAD")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user