Commit 938e14e5 authored by Jeremy Bokobza's avatar Jeremy Bokobza

Added more explicit os identifier

parent 6dd092d4
...@@ -6,13 +6,13 @@ matrix: ...@@ -6,13 +6,13 @@ matrix:
- os: linux # Ubuntu 14.04 - os: linux # Ubuntu 14.04
dist: trusty dist: trusty
sudo: required sudo: required
env: os_version=ubuntu14.04 env: os_identifier=ubuntu.14.04
- os: osx # OSX 10.11 - os: osx # OSX 10.11
osx_image: xcode7.3 osx_image: xcode7.3
env: os_version=10.11 env: os_identifier=osx.10.11
- os: osx # OSX 10.12 - os: osx # OSX 10.12
osx_image: xcode8.1 osx_image: xcode8.1
env: os_version=10.12 env: os_identifier=osx.10.12
# branches to build # branches to build
branches: branches:
......
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
set -o errexit set -o errexit
# define a few variables # define a few variables
app_output_name="breeze-$TRAVIS_OS_NAME.$os_version-$arch-$configuration" app_output_name="breeze-$os_identifier-$arch-$configuration"
api_output_name="api-$TRAVIS_OS_NAME.$os_version-$arch-$configuration" api_output_name="api-$os_identifier-$arch-$configuration"
echo "current environment variables:" echo "current environment variables:"
echo "OS name:" $TRAVIS_OS_NAME echo "OS name:" $TRAVIS_OS_NAME
echo "OS version:" $os_version echo "OS identifier:" $os_identifier
echo "Platform:" $os_platform echo "Platform:" $os_platform
echo "Build directory:" $TRAVIS_BUILD_DIR echo "Build directory:" $TRAVIS_BUILD_DIR
echo "Node version:" $TRAVIS_NODE_VERSION echo "Node version:" $TRAVIS_NODE_VERSION
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment