Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
78069057
Commit
78069057
authored
Jul 26, 2020
by
Henry Schreiner
Committed by
Henry Schreiner
Jul 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: trim down Appveyor
parent
7b067cc3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
39 deletions
+6
-39
.appveyor.yml
+6
-39
No files found.
.appveyor.yml
View file @
78069057
version
:
1.0.{build}
version
:
1.0.{build}
image
:
image
:
-
Visual Studio 2017
-
Visual Studio 2015
-
Visual Studio 2015
test
:
off
test
:
off
skip_branch_with_pr
:
true
skip_branch_with_pr
:
true
build
:
build
:
parallel
:
true
parallel
:
true
platform
:
platform
:
-
x64
-
x86
-
x86
environment
:
environment
:
matrix
:
matrix
:
-
PYTHON
:
36
-
PYTHON
:
36
CPP
:
14
CONFIG
:
Debug
CONFIG
:
Debug
-
PYTHON
:
27
-
PYTHON
:
27
CPP
:
14
CONFIG
:
Debug
CONFIG
:
Debug
-
CONDA
:
36
CPP
:
latest
CONFIG
:
Release
matrix
:
exclude
:
-
image
:
Visual Studio 2015
platform
:
x86
-
image
:
Visual Studio 2015
CPP
:
latest
-
image
:
Visual Studio 2017
CPP
:
latest
platform
:
x86
install
:
install
:
-
ps
:
|
-
ps
:
|
if ($env:PLATFORM -eq "x64") { $env:CMAKE_ARCH = "x64" }
$env:CMAKE_GENERATOR = "Visual Studio 14 2015"
if ($env:APPVEYOR_JOB_NAME -like "*Visual Studio 2017*") {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:CMAKE_GENERATOR = "Visual Studio 15 2017"
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
$env:CMAKE_INCLUDE_PATH = "C:\Libraries\boost_1_64_0"
python -W ignore -m pip install --upgrade pip wheel
$env:CXXFLAGS = "-permissive-"
python -W ignore -m pip install pytest numpy --no-warn-script-location
} else {
$env:CMAKE_GENERATOR = "Visual Studio 14 2015"
}
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
python -W ignore -m pip install --upgrade pip wheel
python -W ignore -m pip install pytest numpy --no-warn-script-location
} elseif ($env:CONDA) {
if ($env:CONDA -eq "27") { $env:CONDA = "" }
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
$env:PATH = "C:\Miniconda$env:CONDA\;C:\Miniconda$env:CONDA\Scripts\;$env:PATH"
$env:PYTHONHOME = "C:\Miniconda$env:CONDA"
conda --version
conda install -y -q pytest numpy scipy
}
-
ps
:
|
-
ps
:
|
Start-FileDownload 'http://bitbucket.org/eigen/eigen/get/3.3.3.zip'
Start-FileDownload 'http://bitbucket.org/eigen/eigen/get/3.3.3.zip'
7z x 3.3.3.zip -y > $null
7z x 3.3.3.zip -y > $null
$env:CMAKE_INCLUDE_PATH = "eigen-eigen-67e894c6cd8f;$env:CMAKE_INCLUDE_PATH"
$env:CMAKE_INCLUDE_PATH = "eigen-eigen-67e894c6cd8f;$env:CMAKE_INCLUDE_PATH"
build_script
:
build_script
:
-
cmake -G "%CMAKE_GENERATOR%" -A "%CMAKE_ARCH%"
-
cmake -G "%CMAKE_GENERATOR%" -A "%CMAKE_ARCH%"
-DPYBIND11_CPP_STANDARD=/std:c++
%CPP%
-DPYBIND11_CPP_STANDARD=/std:c++
14
-DPYBIND11_WERROR=ON
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_CATCH=ON
-DCMAKE_SUPPRESS_REGENERATION=1
-DCMAKE_SUPPRESS_REGENERATION=1
...
@@ -66,5 +34,4 @@ build_script:
...
@@ -66,5 +34,4 @@ build_script:
-
set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-
set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-
cmake --build . --config %CONFIG% --target pytest -- /m /v:m /logger:%MSBuildLogger%
-
cmake --build . --config %CONFIG% --target pytest -- /m /v:m /logger:%MSBuildLogger%
-
cmake --build . --config %CONFIG% --target cpptest -- /m /v:m /logger:%MSBuildLogger%
-
cmake --build . --config %CONFIG% --target cpptest -- /m /v:m /logger:%MSBuildLogger%
-
if "%CPP%"=="latest" (cmake --build . --config %CONFIG% --target test_cmake_build -- /m /v:m /logger:%MSBuildLogger%)
on_failure
:
if exist "tests\test_cmake_build" type tests\test_cmake_build\*.log*
on_failure
:
if exist "tests\test_cmake_build" type tests\test_cmake_build\*.log*
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