We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb95da commit e45b884Copy full SHA for e45b884
ci/fpm-deployment.sh
@@ -9,7 +9,8 @@ destdir="${DESTDIR:-stdlib-fpm}"
9
fypp="${FYPP:-$(which fypp)}"
10
11
# Arguments for the fypp preprocessor
12
-fyflags="${FYFLAGS:--DMAXRANK=8}"
+maxrank=4
13
+fyflags="${FYFLAGS:--DMAXRANK=$maxrank}"
14
15
# Number of parallel jobs for preprocessing
16
if [ $(uname) = "Darwin" ]; then
@@ -34,6 +35,10 @@ prune=(
34
35
"$destdir/src/f18estop.f90"
36
)
37
38
+if [ ${maxrank} -lt 8 ]; then
39
+ prune+=("$destdir/test/test_mean_f03.f90")
40
+fi
41
+
42
major=$(cut -d. -f1 VERSION)
43
minor=$(cut -d. -f2 VERSION)
44
patch=$(cut -d. -f3 VERSION)
0 commit comments