Skip to content

Commit 0341490

Browse files
committed
Merge branch 'master' into vehre/issue-292-type-conversion-during-communication
2 parents b5bff16 + aa79e98 commit 0341490

File tree

37 files changed

+5047
-840
lines changed

37 files changed

+5047
-840
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ codecov.yml export-ignore
3535
makefile export-ignore
3636
Makefile export-ignore
3737
make.inc* export-ignore
38+
39+
# Experimental conduits/backends
3840
src/gasnet export-ignore
41+
src/openshmem export-ignore
3942

4043
# Perform substitutions when `git export`ing these files
4144
.VERSION export-subst

.travis.yml

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ env:
1515
- MPICH_BOT_URL_TAIL="mpich-3.2_3.yosemite.bottle.1.tar.gz"
1616
- BUILD_TYPES="Release Debug RelWithDebInfo CodeCoverage"
1717
matrix:
18-
- GCC=6 OSX_PACKAGES="gcc@6 cmake"
19-
- GCC=7 OSX_PACKAGES="gcc cmake"
18+
- GCC=6 OSX_PACKAGES="gcc@6 cmake shellcheck"
19+
- GCC=7 OSX_PACKAGES="gcc cmake shellcheck"
2020

2121
matrix:
2222
fast_finish: true
@@ -34,6 +34,7 @@ matrix:
3434
- &ubuntu
3535
os: linux
3636
sudo: false
37+
dist: trusty
3738
env:
3839
- GCC=6
3940
cache:
@@ -52,22 +53,24 @@ matrix:
5253
- binutils
5354
- cmake-data
5455
- cmake
55-
# -
56-
# <<: *ubuntu
57-
# env:
58-
# - GCC=7
59-
# addons:
60-
# apt:
61-
# sources:
62-
# - ubuntu-toolchain-r-test
63-
# - george-edison55-precise-backports
64-
# packages:
65-
# - gcc-7
66-
# - gfortran-7
67-
# - g++-7
68-
# - binutils
69-
# - cmake-data
70-
# - cmake
56+
# - shellcheck
57+
-
58+
<<: *ubuntu
59+
env:
60+
- GCC=7
61+
addons:
62+
apt:
63+
sources:
64+
- ubuntu-toolchain-r-test
65+
- george-edison55-precise-backports
66+
packages:
67+
- gcc-7
68+
- gfortran-7
69+
- g++-7
70+
- binutils
71+
- cmake-data
72+
- cmake
73+
# - shellcheck
7174
-
7275
<<: *ubuntu
7376
env:
@@ -82,6 +85,7 @@ matrix:
8285
- gcc-6
8386
- gfortran-6
8487
- g++-6
88+
# - shellcheck
8589
allow_failures:
8690
- os: osx
8791
env:

Brewfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
brew 'cmake'
1515
brew 'gcc'
16-
brew 'mpich', args: ['cc=gcc-6', 'cxx=g++-6']
17-
brew 'opencoarrays'
16+
brew 'mpich', args: ['cc=gcc-7', 'build-from-source']
17+
brew 'opencoarrays', args: ['cc=gcc-7', 'build-from-source']
1818

1919
# [Homebrew]: http://brew.sh
2020
# [Linuxbrew]: http://linuxbrew.sh

CMakeLists.txt

Lines changed: 155 additions & 109 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)