-
Notifications
You must be signed in to change notification settings - Fork 16
Changes for sdk approval #132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 45 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
7108e6a
mpi communicator option particle struct
Angelyr 5a8c363
removed mesh mpi comm world
Angelyr a1e94a2
pumipic version
Angelyr ca72e8b
created pPrintError
Angelyr ab85e4f
replace all stderr
Angelyr 5856337
printinfo
Angelyr 20b1f75
optional spdlog
Angelyr 76caf45
optional print
Angelyr 5e7a4de
better spacing
Angelyr b0c5f9c
replace some errors with info
Angelyr 9b93bef
print on device
Angelyr 7a0975b
fixed debug warning
Angelyr 2e91445
fix print option
Angelyr 3527f47
fixed formatting
Angelyr a545037
major minor patch version
Angelyr 59fc170
updated cmake versions
Angelyr d90d448
refactor github test
Angelyr c67e439
use ppMacros
Angelyr 2925425
try printf
Angelyr b1a6121
template string
Angelyr 635e8d7
fix omega_h build
Angelyr d012ca7
latest omega_h
Angelyr 44c87e1
submodule option
Angelyr 8c31c34
using char*
Angelyr bd28101
doxygen
Angelyr 4dc0c9a
update page
Angelyr df09716
configure git
Angelyr 792db3d
push origin
Angelyr 769bae8
write permissions
Angelyr fa3cf71
only gh-pages
Angelyr 7db2a97
typo
Angelyr e125855
another typo
Angelyr 83a7246
try ls
Angelyr 613fc55
ls html
Angelyr 34c636b
ls original
Angelyr fad919f
push changes
Angelyr f303639
force push
Angelyr 9a10d77
try build artifact
Angelyr b461a6c
permissions
Angelyr 25c86c3
workflow dispatch
Angelyr c2985d6
on push
Angelyr ec1b96b
revert to using gh-pages
Angelyr b20b7e5
push master
Angelyr e2aaf60
smoke test
Angelyr 6ef4dac
test all structures
Angelyr 34882e6
rename doxyfile
Angelyr aac53ad
always install smoke test
Angelyr 69d43eb
moved version to build dir
Angelyr 4c1073d
set print file
Angelyr 06fae49
reduced version
Angelyr 59071e7
moved option and find package
Angelyr 2f587ee
update variable names
Angelyr 719bb4f
updated header guards
Angelyr 6cfaf55
moved [ERROR]
Angelyr e84fbe2
removed global state
Angelyr bc7ae5c
install pumipic_version
Angelyr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,47 @@ | ||
| name: Install-Repo | ||
|
|
||
| inputs: | ||
| repo-name: | ||
| required: true | ||
| repo-path: | ||
| required: true | ||
| repo-ref: | ||
| required: true | ||
| options: | ||
| required: true | ||
| cache: | ||
| required: true | ||
| submodules: | ||
| default: '' | ||
|
|
||
| runs: | ||
| using: "composite" | ||
| steps: | ||
|
|
||
| - name: Check Cache | ||
| if: ${{ inputs.cache == 'true'}} | ||
| uses: actions/cache@v3 | ||
| id: check-cache | ||
| with: | ||
| key: build-${{ inputs.repo-name }} | ||
| path: ${{ runner.temp }}/build-${{ inputs.repo-name }} | ||
|
|
||
| - name: Checkout Repo | ||
| uses: actions/checkout@v3 | ||
| with: | ||
| repository: ${{ inputs.repo-path }} | ||
| submodules: ${{ inputs.submodules }} | ||
| ref: ${{ inputs.repo-ref }} | ||
| path: ${{ inputs.repo-name }} | ||
|
|
||
| - name: Configure CMake | ||
| if: ${{ !steps.check-cache.outputs.cache-hit }} | ||
| shell: bash | ||
| run: cmake -S $GITHUB_WORKSPACE/${{ inputs.repo-name }} -B ${{ runner.temp }}/build-${{ inputs.repo-name }} | ||
| -DCMAKE_INSTALL_PREFIX=${{ runner.temp }}/build-${{ inputs.repo-name }}/install | ||
| ${{ inputs.options }} | ||
|
|
||
| - name: Build Cmake | ||
| if: ${{ !steps.check-cache.outputs.cache-hit }} | ||
| shell: bash | ||
| run: cmake --build ${{ runner.temp }}/build-${{ inputs.repo-name }} -j8 --target install |
This file contains hidden or 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 hidden or 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,49 @@ | ||
| name: Update Doxygen Page | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| doxygen: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
|
|
||
| steps: | ||
|
|
||
| - name: Install Doxygen | ||
| run: | | ||
| sudo apt-add-repository universe | ||
| sudo apt-get update | ||
| sudo apt-get install doxygen | ||
|
|
||
| - name: Checkout Original | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| path: original | ||
|
|
||
| - name: Run Doxygen | ||
| working-directory: original | ||
| run: doxygen | ||
|
|
||
| - name: Checkout Pages | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| path: pages | ||
|
|
||
| - name: Set up pages directory | ||
| working-directory: pages | ||
| run: | | ||
| git checkout --orphan gh-pages | ||
| git rm -rf . | ||
| cp -r ../original/html/. . | ||
| - name: Update Github | ||
| working-directory: pages | ||
| run: | | ||
| git config user.name "GitHub Actions Bot" | ||
| git config user.email "<>" | ||
| git add . | ||
| git commit -m "Update page from action" | ||
| git push -f origin gh-pages |
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.