Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
3d27bdef
Unverified
Commit
3d27bdef
authored
Jan 08, 2018
by
Gennadiy Civil
Committed by
GitHub
Jan 08, 2018
Browse files
Merge pull request #1387 from coryan/optimize-build-matrix-ready
Optimize build matrix on pull requests
parents
4371b996
67d6e467
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
.travis.yml
.travis.yml
+4
-0
appveyor.yml
appveyor.yml
+17
-1
No files found.
.travis.yml
View file @
3d27bdef
...
...
@@ -38,15 +38,19 @@ matrix:
-
os
:
osx
compiler
:
gcc
env
:
BUILD_TYPE=Debug VERBOSE=1
if
:
type != pull_request
-
os
:
osx
compiler
:
gcc
env
:
BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11
if
:
type != pull_request
-
os
:
osx
compiler
:
clang
env
:
BUILD_TYPE=Debug VERBOSE=1
if
:
type != pull_request
-
os
:
osx
compiler
:
clang
env
:
BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11
if
:
type != pull_request
# These are the install and build (script) phases for the most common entries in the matrix. They could be included
# in each entry in the matrix, but that is just repetitive.
...
...
appveyor.yml
View file @
3d27bdef
...
...
@@ -11,6 +11,7 @@ environment:
-
compiler
:
msvc-15-seh
generator
:
"
Visual
Studio
15
2017
Win64"
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2017
enabled_on_pr
:
yes
-
compiler
:
msvc-14-seh
generator
:
"
Visual
Studio
14
2015"
...
...
@@ -43,7 +44,6 @@ environment:
configuration
:
-
Debug
#- Release
build
:
verbosity
:
minimal
...
...
@@ -52,6 +52,14 @@ install:
-
ps
:
|
Write-Output "Compiler: $env:compiler"
Write-Output "Generator: $env:generator"
if (-not (Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER)) {
Write-Output "This is *NOT* a pull request build"
} else {
Write-Output "This is a pull request build"
if (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes") {
Write-Output "PR builds are *NOT* explicitly enabled"
}
}
# git bash conflicts with MinGW makefiles
if ($env:generator -eq "MinGW Makefiles") {
...
...
@@ -63,6 +71,10 @@ install:
build_script
:
-
ps
:
|
# Only enable some builds for pull requests, the AppVeyor queue is too long.
if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
return
}
md _build -Force | Out-Null
cd _build
...
...
@@ -81,6 +93,10 @@ build_script:
test_script
:
-
ps
:
|
# Only enable some builds for pull requests, the AppVeyor queue is too long.
if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
return
}
if ($env:generator -eq "MinGW Makefiles") {
return # No test available for MinGW
}
...
...
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