Skip to content

Commit 1b0627a

Browse files
authored
Merge pull request #319 from sourceryinstitute/issue-318
Fix bad arg order in CMake command Fixes #318
2 parents 4a74633 + 1776e85 commit 1b0627a

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.pullapprove.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ groups:
1111
- master
1212
- devel
1313
- caffeinate-opencoarrays
14-
files:
15-
exclude:
16-
- "*.md"
17-
users:
18-
- afanfa
19-
- rouson
20-
- zbeekman
14+
teams:
15+
- team-opencoarrays
2116
# https://github.com/orgs/sourceryinstitute/teams/team-opencoarrays
2217
OpenCoarrays:
2318
# Whenever someone has a PR, on any branch require at least 1
2419
# collaborator to explicitly review it
2520
required: 1
2621
users: all
22+
conditions:
23+
branches:
24+
exclude:
25+
- master
26+
- devel
27+
- caffeinate-opencoarrays
2728
ConfigManagers:
2829
required: 1
2930
conditions:

src/tests/integration/pde_solvers/navier-stokes/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ if ( ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "x86_64") AND ("${CMAKE_SYSTEM_NAME}"
99
set(fft_library ${CMAKE_CURRENT_SOURCE_DIR}/libfft_avx.a )
1010
endif()
1111
add_executable( coarray_navier_stokes
12+
EXCLUDE_FROM_ALL
1213
coarray-shear_coll.F90
1314
${walltime_o}
14-
EXCLUDE_FROM_ALL
1515
)
1616
target_link_libraries(coarray_navier_stokes OpenCoarrays ${fft_library})
1717
endif()

0 commit comments

Comments
 (0)