-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change version * Correct TagBot * Try _ to seperate PreCICE from bindings version * Seperate bindings version with a `-` * Change version to release candidate `2.4.0-0-rc1` * Add formatter workflow (#31) * Update README * Add formatter workflow * Format every current file * New line at the end of the file * Revert README changes * Run format on each push on all branches * Update README with general repository and troubleshooting (#30) * Update README * Minor edits to README Co-authored-by: Ishaan Desai <ishaandesai@gmail.com> * Fix bug: readScalarData returns wrong value (#33) * Fix wrong transposes (#35) * Add tests for Package functions (#32) * Update README * Add formatter workflow * Format every current file * New line at the end of the file * Revert README changes * Run format on each push on all branches * [WIP] Set up testing for all functions * [WIP] Set up testing for all functions * Correct some errors and types * Use string compare and debugging * Debugging * Undo Integer convert * Don't use range for 1.6 compat * integer to Cint * Merge develop into testing * Seperate Functioncall tests * Add info message where to run `make` * Format * Move function tests back to the rest * Undo documentation changes for now unchanged functions * Add user info where to run `make` * Update test workflow to include function tests * Undo changes to workflow and Fix runtests * Update Readme * Test excluding julia x86 architecture * Test running tests manually * Undo workflow changes * Compile Fake solverdummy * Install make in workflow * no sudo * make instead of build essential * update and apt * Add info on how to compile fake SolveIinterface.c * Change command in user info * Update README.md Co-authored-by: Ishaan Desai <ishaandesai@gmail.com> * Update README.md Co-authored-by: Ishaan Desai <ishaandesai@gmail.com> * Review Changes Co-authored-by: Ishaan Desai <ishaandesai@gmail.com> * Remove meshName from arguments (#36) * Remove meshName from arguments * Remove MeshName from solverdummy test * Format * Fix tests (#37) * Fix tests * Remove unecessary comment * Update version number Co-authored-by: Ishaan Desai <ishaandesai@gmail.com>
- Loading branch information
1 parent
a4d99e7
commit 13c368c
Showing
15 changed files
with
1,010 additions
and
154 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,36 @@ | ||
name: format-check | ||
|
||
on: | ||
push | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
julia-version: [1.6.0] | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
|
||
- uses: actions/checkout@v1 | ||
- name: Install JuliaFormatter and format | ||
# This will use the latest version by default but you can set the version like so: | ||
# | ||
# julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter", version="0.13.0"))' | ||
run: | | ||
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter"))' | ||
julia -e 'using JuliaFormatter; format(".", verbose=true)' | ||
- name: Format check | ||
run: | | ||
julia -e ' | ||
out = Cmd(`git diff --name-only`) |> read |> String | ||
if out == "" | ||
exit(0) | ||
else | ||
@error "Some files have not been formatted !!!" | ||
write(stdout, out) | ||
exit(1) | ||
end' |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ binarybuilder | |
solverdummy/*.log | ||
solverdummy/*.json | ||
solverdummy/precice-run/ | ||
*.o | ||
*.so | ||
deps/build.log |
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
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.