Skip to content

Commit 9f1e4cc

Browse files
authored
Merge branch 'develop-v4' into enable-ocsp-stapling
2 parents 710bac2 + 856a0e1 commit 9f1e4cc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ script:
4040
- ./ci/test-commands.sh
4141

4242
after_script:
43+
- cat /opt/easyengine/install.log
4344
- cat /opt/easyengine/ee.log
4445

4546
jobs:

ci/prepare.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
# called by Travis CI
44

5-
if [[ "$TRAVIS_BRANCH" == "develop-v4" ]]; then
5+
if [[ "$TRAVIS_BRANCH" != $DEPLOY_BRANCH ]]; then
66
version=$(head -n 1 VERSION)
77
version="$(echo $version | xargs)"
8-
version+="-nightly"
8+
version+="-nightly-$(git rev-parse --short HEAD)"
99
echo $version > VERSION
10+
sed -i 's/\:\ \"\(.*\)\"/\:\ \"\1-nightly\"/g' img-versions.json
1011
fi
1112

1213
php -dphar.readonly=0 ./utils/make-phar.php easyengine.phar --quiet

ci/test-env-install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
function setup_test_requirements() {
3+
readonly LOG_FILE="/opt/easyengine/install.log"
34
# Adding software-properties-common for add-apt-repository.
45
apt-get install -y software-properties-common
56
# Adding ondrej/php repository for installing php, this works for all ubuntu flavours.

0 commit comments

Comments
 (0)