-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from mathLab/v9.5.0
No warnings. New VERSION. Github.
- Loading branch information
Showing
42 changed files
with
699 additions
and
516 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,28 @@ | ||
name: Doxygen | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Get deal.tag | ||
run: | | ||
wget https://www.dealii.org/developer/doxygen/deal.tag | ||
- name: Build Doxygen documentation | ||
uses: mattnotmitt/[email protected] | ||
with: | ||
doxyfile-path: "./docs/Doxyfile" | ||
working-directory: "." | ||
|
||
- name: Publish Doxygen documentation | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./doc/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Indent | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
container: | ||
image: dealii/dealii:v9.5.0-jammy | ||
options: --user root --env OMPI_ALLOW_RUN_AS_ROOT=1 --env OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Check indentation | ||
run: | | ||
git config --global --add safe.directory /__w/pi-BEM/pi-BEM | ||
./scripts/check_indentation.sh |
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,48 @@ | ||
name: GitHub CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
debug: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: dealii/dealii:v9.5.0-jammy | ||
options: --user root --env OMPI_ALLOW_RUN_AS_ROOT=1 --env OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test debug | ||
run: | | ||
rm -rf build_linux_debug | ||
mkdir build_linux_debug | ||
cd build_linux_debug | ||
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug | ||
ninja | ||
ctest -N | ||
ctest --output-on-failure | ||
release: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: dealii/dealii:v9.5.0-jammy | ||
options: --user root --env OMPI_ALLOW_RUN_AS_ROOT=1 --env OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test release | ||
run: | | ||
rm -rf build_linux_release | ||
mkdir build_linux_release | ||
cd build_linux_release | ||
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release | ||
ninja | ||
ctest -N | ||
ctest --output-on-failure |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
9.1.1 | ||
9.5.0 |
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 |
---|---|---|
@@ -1,14 +1,9 @@ | ||
FROM heltai/deal2lkit:debug-release | ||
|
||
MAINTAINER [email protected] | ||
FROM dealii/dealii:v9.5.0-jammy | ||
|
||
# pi-BEM master image | ||
RUN git clone https://github.com/mathLab/pi-BEM/ &&\ | ||
mkdir pi-BEM/build && cd pi-BEM/build &&\ | ||
cmake -DCMAKE_BUILD_TYPE=DebugRelease \ | ||
-GNinja \ | ||
../ && \ | ||
ninja -j4 | ||
|
||
# Need this for Travis! | ||
USER root | ||
-GNinja \ | ||
../ && \ | ||
ninja |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.