-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
3,710 additions
and
1,007 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
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,39 @@ | ||
name: doc | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
# regenerate when master branch is updated | ||
push: | ||
branches: | ||
- master | ||
|
||
# or when manually triggered from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build-doc: | ||
name: Generation of documentation | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: obtain copy of repository | ||
uses: actions/checkout@v1 | ||
|
||
- name: make a directory for the generated doc | ||
run: mkdir docgen_dir | ||
|
||
- name: run doxygen to generate doc, outputting to docgen_dir | ||
uses: mattnotmitt/[email protected] | ||
with: | ||
working-directory: docgen_dir | ||
doxyfile-path: doxyconfig/config | ||
enable-latex: true | ||
|
||
- name: deploy new doc to github pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docgen_dir/html |
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
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
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
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,40 @@ | ||
name: Windows unit | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
|
||
build-and-test: | ||
name: Unit tests on Windows MSVC | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
float-precision: [2] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: make build directory | ||
shell: cmd | ||
run: mkdir build_dir | ||
|
||
- name: cmake configure | ||
shell: cmd | ||
run: cmake .. -DTESTING=ON -DPRECISION:STRING=${{matrix.float-precision}} | ||
working-directory: build_dir | ||
|
||
- name: cmake build | ||
run: cmake --build . --target tests | ||
working-directory: build_dir | ||
|
||
- name: cmake test | ||
run: ctest -j2 --output-on-failure | ||
working-directory: build_dir |
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
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
Oops, something went wrong.