forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in hugo web site and associated support files.
- Loading branch information
Showing
149 changed files
with
4,312 additions
and
299 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ name: 'CI' | |
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'web/**' | ||
pull_request: ~ | ||
|
||
jobs: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# | ||
# GitHub Actions for GEOS Web Pages | ||
# Paul Ramsey <[email protected]> | ||
# | ||
|
||
name: 'Web' | ||
|
||
on: | ||
push: | ||
branches: | ||
- web | ||
|
||
jobs: | ||
linux: | ||
name: 'Build Web' | ||
runs-on: ubuntu-latest | ||
|
||
# Only run docbuild on central repo | ||
if: github.repository == 'libgeos/geos' | ||
steps: | ||
|
||
- name: 'Install' | ||
run: | | ||
set -e | ||
uname -a | ||
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen | ||
- name: 'Check Out 📗' | ||
uses: actions/checkout@v2 | ||
|
||
- name: 'Hugo Build 🛠' | ||
# ...or replace 'master' with a full version tag, such as: v0.64.1 | ||
uses: jakejarvis/[email protected] | ||
with: | ||
args: --source web --destination public --verbose | ||
|
||
- name: 'Doxygen Build 🛠' | ||
run: | | ||
set -e | ||
mkdir build.cmake | ||
cd build.cmake | ||
cmake --version | ||
cmake -DBUILD_DOCUMENTATION=YES .. | ||
cmake --build . --target docs | ||
- name: 'Bundle 🛠' | ||
run: | | ||
mkdir -p public_html/doxygen | ||
cp -ra web/public/* public_html | ||
cp -ra build.cmake/doxygen/doxygen_docs/html/* public_html/doxygen | ||
- name: 'Deploy 🚀' | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: public_html # The folder the action should depl y. | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,3 +83,4 @@ authors.git | |
.idea/ | ||
.project | ||
out/ | ||
web/public/ |
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
To build Doxygen documentation use: | ||
|
||
make doxygen-html | ||
|
||
Take a look at example.cpp to get started. |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.