Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
69e794ca
Commit
69e794ca
authored
Sep 01, 2017
by
Gennadiy Civil
Committed by
GitHub
Sep 01, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #870 from KindDragon/mingw64-appveyour
AppVeyor MinGW-w64 test build
parents
836c194a
633488a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
36 deletions
+53
-36
appveyor.yml
appveyor.yml
+53
-36
No files found.
appveyor.yml
View file @
69e794ca
...
@@ -4,68 +4,85 @@ os: Visual Studio 2015
...
@@ -4,68 +4,85 @@ os: Visual Studio 2015
environment
:
environment
:
matrix
:
matrix
:
-
Toolset
:
v140
-
compiler
:
msvc-14-seh
-
Toolset
:
v120
generator
:
"
Visual
Studio
14
2015"
-
Toolset
:
v110
-
Toolset
:
v100
platform
:
-
compiler
:
msvc-14-seh
-
Win32
generator
:
"
Visual
Studio
14
2015
Win64"
-
x64
-
compiler
:
msvc-12-seh
generator
:
"
Visual
Studio
12
2013"
-
compiler
:
msvc-12-seh
generator
:
"
Visual
Studio
12
2013
Win64"
-
compiler
:
msvc-11-seh
generator
:
"
Visual
Studio
11
2012"
-
compiler
:
msvc-11-seh
generator
:
"
Visual
Studio
11
2012
Win64"
-
compiler
:
msvc-10-seh
generator
:
"
Visual
Studio
10
2010"
-
compiler
:
gcc-5.3.0-posix
generator
:
"
MinGW
Makefiles"
cxx_path
:
'
C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
-
compiler
:
gcc-6.3.0-posix
generator
:
"
MinGW
Makefiles"
cxx_path
:
'
C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin'
configuration
:
configuration
:
# - Release
-
Debug
-
Debug
#- Release
build
:
build
:
verbosity
:
minimal
verbosity
:
minimal
artifacts
:
install
:
-
path
:
'
_build/Testing/Temporary/*'
name
:
test_results
before_build
:
-
ps
:
|
-
ps
:
|
Write-Output "Configuration: $env:CONFIGURATION"
Write-Output "Compiler: $env:compiler"
Write-Output "Platform: $env:PLATFORM"
Write-Output "Generator: $env:generator"
$generator = switch ($env:TOOLSET)
{
# git bash conflicts with MinGW makefiles
"v140" {"Visual Studio 14 2015"}
if ($env:generator -eq "MinGW Makefiles") {
"v120" {"Visual Studio 12 2013"}
$env:path = $env:path.replace("C:\Program Files\Git\usr\bin;", "")
"v110" {"Visual Studio 11 2012"}
if ($env:cxx_path -ne "") {
"v100" {"Visual Studio 10 2010"}
$env:path += ";$env:cxx_path"
}
}
if ($env:PLATFORM -eq "x64")
{
$generator = "$generator Win64"
}
}
build_script
:
build_script
:
-
ps
:
|
-
ps
:
|
if (($env:TOOLSET -eq "v100") -and ($env:PLATFORM -eq "x64"))
{
return
}
md _build -Force | Out-Null
md _build -Force | Out-Null
cd _build
cd _build
& cmake -G "$generator" -DCMAKE_CONFIGURATION_TYPES="Debug;Release" -Dgtest_build_tests=ON -Dgtest_build_samples=ON -Dgmock_build_tests=ON ..
$conf = if ($env:generator -eq "MinGW Makefiles") {"-DCMAKE_BUILD_TYPE=$env:configuration"} else {"-DCMAKE_CONFIGURATION_TYPES=Debug;Release"}
# Disable test for MinGW (gtest tests fail, gmock tests can not build)
$gtest_build_tests = if ($env:generator -eq "MinGW Makefiles") {"-Dgtest_build_tests=OFF"} else {"-Dgtest_build_tests=ON"}
$gmock_build_tests = if ($env:generator -eq "MinGW Makefiles") {"-Dgmock_build_tests=OFF"} else {"-Dgmock_build_tests=ON"}
& cmake -G "$env:generator" $conf -Dgtest_build_samples=ON $gtest_build_tests $gmock_build_tests ..
if ($LastExitCode -ne 0) {
if ($LastExitCode -ne 0) {
throw "Exec: $ErrorMessage"
throw "Exec: $ErrorMessage"
}
}
& cmake --build . --config $env:
CONFIGURATION
& cmake --build . --config $env:
configuration
if ($LastExitCode -ne 0) {
if ($LastExitCode -ne 0) {
throw "Exec: $ErrorMessage"
throw "Exec: $ErrorMessage"
}
}
test_script
:
test_script
:
-
ps
:
|
-
ps
:
|
if (($env:Toolset -eq "v100") -and ($env:PLATFORM -eq "x64"))
if ($env:generator -eq "MinGW Makefiles") {
{
return # No test available for MinGW
return
}
}
& ctest -C $env:configuration --timeout 300 --output-on-failure
& ctest -C $env:CONFIGURATION --output-on-failure
if ($LastExitCode -ne 0) {
if ($LastExitCode -ne 0) {
throw "Exec: $ErrorMessage"
throw "Exec: $ErrorMessage"
}
}
artifacts
:
-
path
:
'
_build/CMakeFiles/*.log'
name
:
logs
-
path
:
'
_build/Testing/**/*.xml'
name
:
test_results
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