Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
6dd092d4
Commit
6dd092d4
authored
Jul 14, 2017
by
Jeremy Bokobza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added OS name and version to the output files for OSX releases
parent
4898e328
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
10 deletions
+19
-10
.travis.yml
.travis.yml
+11
-8
build.sh
build.sh
+8
-2
No files found.
.travis.yml
View file @
6dd092d4
...
...
@@ -5,29 +5,32 @@ matrix:
include
:
-
os
:
linux
# Ubuntu 14.04
dist
:
trusty
sudo
:
required
sudo
:
required
env
:
os_version=ubuntu14.04
-
os
:
osx
# OSX 10.11
osx_image
:
xcode7.3
osx_image
:
xcode7.3
env
:
os_version=10.11
-
os
:
osx
# OSX 10.12
osx_image
:
xcode8.1
osx_image
:
xcode8.1
env
:
os_version=10.12
# branches to build
branches
:
only
:
-
master
env
:
global
:
-
log_prefix=
"[$TRAVIS_OS_NAME]"
-
log_prefix=
[$TRAVIS_OS_NAME]
-
arch=x64
-
configuration="Release"
-
app_output_name="breeze-$arch-$TRAVIS_OS_NAME-Release"
-
api_output_name="api-$arch-$TRAVIS_OS_NAME-Release"
-
configuration=Release
-
os_platform=linux
-
TRAVIS_TAG=cd-unstable
# Work around NuGet issue #2163
# https://github.com/NuGet/Home/issues/2163
# https://github.com/travis-ci/travis-ci/issues/7728
before_install
:
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then ulimit -n 1024 ; os_platform=darwin ; fi
...
...
build.sh
View file @
6dd092d4
...
...
@@ -3,15 +3,21 @@
# exit if error
set
-o
errexit
# define a few variables
app_output_name
=
"breeze-
$TRAVIS_OS_NAME
.
$os_version
-
$arch
-
$configuration
"
api_output_name
=
"api-
$TRAVIS_OS_NAME
.
$os_version
-
$arch
-
$configuration
"
echo
"current environment variables:"
echo
"OS name:"
$TRAVIS_OS_NAME
echo
"OS version:"
$os_version
echo
"Platform:"
$os_platform
echo
"Build directory:"
$TRAVIS_BUILD_DIR
echo
"Node version:"
$TRAVIS_NODE_VERSION
echo
"Architecture:"
$arch
echo
"Configuration:"
$configuration
echo
"App output name"
$app_output_name
echo
"Api output name"
$api_output_name
echo
"App output name:"
$app_output_name
echo
"Api output name:"
$api_output_name
dotnet
--info
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment