We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0bddc8 commit 2ef1bc2Copy full SHA for 2ef1bc2
.travis.yml
@@ -7,13 +7,13 @@ after_script:
7
- hpc-coveralls --exclude-dir=tests tests
8
notifications:
9
email: true
10
-before_deploy: "./bundle/build.sh"
+before_deploy: "./bundle/build.sh linux64"
11
deploy:
12
provider: releases
13
api_key: $RELEASE_KEY
14
file:
15
- - bundle/*.tar.gz
16
- - bundle/*.sha
+ - bundle/linux64.tar.gz
+ - bundle/linux64.sha
17
skip_cleanup: true
18
on:
19
all_branches: true
bundle/build.sh
@@ -2,7 +2,13 @@ set -e
2
3
SCRIPTPATH=$( cd "$(dirname "$0")" ; pwd -P )
4
5
-OS=$( uname )
+OS=$1
6
+
+if [ -z $OS ]
+then
+ echo "Usage: build.sh osname"
+ exit 1
+fi
pushd ${SCRIPTPATH} > /dev/null
0 commit comments