Skip to content

Commit 7094e6b

Browse files
committed
Fix travis, merge didn't do it
Maybe rerere resolved the conflicts?
1 parent 34ef6e9 commit 7094e6b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

.travis.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ before_install:
9999
- export CXX=g++-${GCC}
100100
- export MPICH_BOT_URL_HEAD=MPICH_GCC${GCC}_BOT_URL_HEAD
101101
- |
102-
set -o errexit
103102
if [[ (-n ${TRAVIS_TAG}) && (${TRAVIS_OS_NAME} == osx) ]] && ${TRAVIS_SECURE_ENV_VARS} ; then
104103
brew update > /dev/null
105104
brew ls --versions gpg2 >/dev/null || brew install gpg2
@@ -116,9 +115,7 @@ before_install:
116115
curl https://izaakbeekman.com/izaak.pubkey.txt | gpg --import
117116
git tag -v ${TRAVIS_TAG}
118117
fi
119-
set +o errexit
120118
- |
121-
set -o errexit
122119
if [[ (-n ${TRAVIS}) && (${TRAVIS_OS_NAME} == osx) ]]; then
123120
export PATH="${PATH}:${HOME}/Library/Python/2.7/bin"
124121
else
@@ -129,11 +126,9 @@ before_install:
129126
${CC} --version
130127
${CXX} --version
131128
fi
132-
set +o errexit
133129
134130
install:
135131
- |
136-
set -o errexit
137132
if [[ (-n ${TRAVIS}) && (${TRAVIS_OS_NAME} == osx) ]]; then
138133
brew update > /dev/null
139134
@@ -179,11 +174,9 @@ install:
179174
mpicc --version
180175
cmake --version
181176
fi
182-
set +o errexit
183177
184178
script:
185179
- |
186-
set -o errexit
187180
if [[ ${BUILD_TYPE} == InstallScript ]]; then
188181
./install.sh --yes-to-all -i "${HOME}/opencoarrays" -j 4 -f "$(type -P "${FC}")" -c "$(type -P "${CC}")" -C "$(type -P "${CXX}")"
189182
cd prerequisites/builds/opencoarrays/*
@@ -202,18 +195,15 @@ script:
202195
cd ..
203196
done
204197
fi
205-
set +o errexit
206198
207199
after_script:
208200
- |
209-
set -o errexit
210201
if [[ "${TRAVIS_TAG}" ]]; then
211202
if [[ "v${TRAVIS_TAG}" != "v$(sed -n '/[0-9]\{1,\}\(\.[0-9]\{1,\}\)\{1,\}/{s/^\([^.]*\)\([0-9]\{1,\}\(\.[0-9]\{1,\}\)\{1,\}\)\(.*\)/\2/p;q;}' .VERSION)" ]]; then
212203
echo "ERROR: You are trying to tag a new release but have a version missmatch in \`.VERSION\`"
213204
false # throw an error
214205
fi
215206
fi
216-
set +o errexit
217207
218208
after_success:
219209
- find . -name '*.gcno' -print
@@ -231,7 +221,6 @@ after_success:
231221
# sha256sum "OpenCoarrays-${TRAVIS_TAG}.tar.gz" >> "opencoarrays-${TRAVIS_TAG}-SHA256.txt
232222
# fi
233223
# - |
234-
# set -o errexit
235224
# openssl aes-256-cbc -K ${encrypted_ef4535c39461_key} -iv ${encrypted_ef4535c39461_iv} -in subkey-328B3A0E-secret.asc.enc -out ./subkey-328B3A0E-secret.asc -d
236225
# gpg --allow-secret-key-import --import ./subkey-328B3A0E-secret.asc && rm subkey-328B3A0E-secret.asc
237226
# rm subkey-328B3A0E-secret.* || true
@@ -250,7 +239,6 @@ after_success:
250239
# --comment 'verify with:' \
251240
# --comment '`gpg --verify opencoarrays-'"${TRAVIS_TAG}"'-SHA256.txt.asc`' \
252241
# "opencoarrays-${TRAVIS_TAG}-SHA256.txt"
253-
# set +o errexit
254242

255243
# deploy:
256244
# provider: releases

0 commit comments

Comments
 (0)