-
-
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.
Merge pull request #55 from precice/PreCICE.jl-v3.0.0
Release v3.0.0
- Loading branch information
Showing
14 changed files
with
1,058 additions
and
1,346 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 |
---|---|---|
@@ -1,55 +1,64 @@ | ||
name: Run Tests | ||
on: [push,pull_request] | ||
on: # run on every push to main and develop, and on every pull request to main and develop | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: precice/precice | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
julia-version: ['1.6.0','1.6.5','1.7.0','^1.7'] | ||
julia-version: ["1.8.0", "1.9.0", "1.10.0"] | ||
julia-arch: [x64, x86] | ||
|
||
steps: | ||
- name: Install Julia | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
- uses: actions/checkout@v2 | ||
version: ${{ matrix.julia-version }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Build Package | ||
uses: julia-actions/julia-buildpkg@v1 | ||
|
||
run_tests: | ||
runs-on: ubuntu-latest | ||
container: precice/precice | ||
container: precice/precice:develop | ||
needs: [build] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
julia-version: ['1.6.0','1.6.5','1.7.0','^1.7'] | ||
julia-version: ["1.8.0", "1.9.0", "1.10.0"] | ||
julia-arch: [x64, x86] | ||
|
||
steps: | ||
- name: Install Julia | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
- uses: actions/checkout@v2 | ||
version: ${{ matrix.julia-version }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Build Package | ||
uses: julia-actions/julia-buildpkg@v1 | ||
|
||
- name: install make | ||
run: | | ||
apt update | ||
apt install make | ||
- name: Build Fake Solverinterface | ||
- name: Build fake Solverinterface | ||
run: | | ||
cd test | ||
make | ||
- name: Add libprecice to LD_LIBRARY_PATH and adjust LD_PRELOAD | ||
run: | | ||
echo "LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV | ||
echo "LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6:/usr/lib/x86_64-linux-gnu/libcurl.so.4" >> $GITHUB_ENV | ||
- name: Run tests | ||
uses: julia-actions/julia-runtest@v1 |
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 |
---|---|---|
|
@@ -5,4 +5,6 @@ solverdummy/*.json | |
solverdummy/precice-run/ | ||
*.o | ||
*.so | ||
deps/build.log | ||
deps/build.log | ||
build/ | ||
.vscode/ |
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.