Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@master
with:
Expand Down
8 changes: 1 addition & 7 deletions examples/partitioned-heat-conduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,9 @@ In the G+Smo build folder, build the tutorial file.

```
make <participant file> -j <#threads>
make install <participant file>
```

Go to the gismo-executable folder and link the compiled executable to the gismo_executable.

```
cd gismo-executable
chmod +x create_symlink.sh
./create_symlink.sh
```

You can find the corresponding `run.sh` script for running the case in the folders corresponding to the participant you want to use:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e -u

../gismo-executable/gismo-executable-dirichlet -c ../precice-config.xml
partitioned-heat-conduction-IGA-Dirichlet -c ../precice-config.xml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e -u

../gismo-executable/gismo-executable-neumann -c ../precice-config.xml
partitioned-heat-conduction-IGA-Neumann -c ../precice-config.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e -u

../gismo-executable/gismo-executable -c ../precice-config.xml --plot -s 0
partitioned-heat-conduction -c ../precice-config.xml --plot -s 0

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -e -u

../gismo-executable/gismo-executable -c ../precice-config.xml --plot -s 1
partitioned-heat-conduction -c ../precice-config.xml --plot -s 1
Loading
Loading