Skip to content

Commit bc6504d

Browse files
authored
Merge pull request #22 from dune-project/bugfix/disable-some-macos-runs
Temporarily disable failing macOS runs.
2 parents 07bcab1 + 5020eae commit bc6504d

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

testing/completeSourceInEnv.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# do not run on macOS
2+
if [ "$3" == "macOS" ]; then
3+
exit 0
4+
fi
5+
16
# setup an external venv
27
python3 -m venv dune-env
38
. dune-env/bin/activate

testing/installPlusSource.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# do not run on macOS
2+
if [ "$3" == "macOS" ]; then
3+
exit 0
4+
fi
5+
6+
17
base="https://gitlab.dune-project.org"
28
coreurl="$base/core"
39
femurl="$base/dune-fem"
@@ -20,7 +26,7 @@ print(\"===============================\") ;\
2026
print(\"petsc4py version:\",petsc4py.__version__) ;\
2127
print(\"===============================\") ;\
2228
"
23-
# we need site-packages to get this to work but we get problems with
29+
# we need site-packages to get this to work but we get problems with
2430
# File "/home/runner/work/dune-testpypi/dune-testpypi/test/dune-env/lib/python3.10/site-packages/dune/common/__init__.py", line 44, in <module>
2531
# from ._common import *
2632
# ModuleNotFoundError: No module named 'dune.common._common'
@@ -52,7 +58,7 @@ python -m dune.fem
5258
cd fem_tutorial
5359
pip list
5460
/usr/bin/time python concepts.py &
55-
/usr/bin/time python solversExternal.py
61+
/usr/bin/time python solversExternal.py
5662
cd ..
5763

5864
# install polygongrid and test that can be used within dune-fem

0 commit comments

Comments
 (0)