appveyor

Why does AppVeyor use VS2010 tools for VS2015 image?

我们两清 提交于 2019-12-11 18:29:56
问题 We are a C++ library. We are struggling with AppVeyor and Visual Studio build images with x64 builds. Visual Studio build images for Win32 suffer the same problem, but for some [unknown] reason, they complete successfully. We are attempting to use the Visual Studio 2015 build image (among others): When we inspect the command line, it appears we are using the Visual Studio 2010 compiler (Visual Studio 10.0 is VS2010): Our AppVeyor configuration file is located at Noloader GitHub | .appveyor

Building R packages with Packrat and AppVeyor

China☆狼群 提交于 2019-12-09 18:27:37
问题 Can someone point me towards a working example where packrat is used with AppVeyor to build an R package? Searching through Google and GitHub, I can't find any packrat-enable package that uses AppVeyor. Does the appveyor.yml file need to change? Are there some settings I need to add through the AppVeyor website? I have a very minimal package ( testthat is the only dependency) that broke AppVeyor builds. Here is the code frozen for that commit. Here is the AppVeyor log. (If this SO question

How to publish beta nuget packages out of AppVeyor

折月煮酒 提交于 2019-12-06 04:48:25
问题 Here is the behavior I'm trying to achieve in AppVeyor Build the code (stamp AssemblyInfo with 1.2.3.{build} ) Test the code Create the nuget package if the tests passed Publish the beta package if the package created successfully ( 1.2.3-beta-{build} ) Also make the package available in artifacts. Ideally when publishing a nuget package it would be published as prerelease. In NuGet, this is done by adding alpha characters to the end of the package version. It is also considered bad practice

How to run VCUpgrade before Appveyor build?

放肆的年华 提交于 2019-12-05 01:31:05
We distribute a set of Visual Studio 2010 project files. Users are expected to upgrade to suit their taste. Our .appveyor.yml file includes the following images (in addition to configurations and platforms): Visual Studio 2017 Visual Studio 2015 Visual Studio 2013 Visual Studio 2012 Visual Studio 2010 The Visual Studio 2017 build failed with: Build started git clone -q --depth=3 --branch=master https://github.com/noloader/cryptopp.git C:\projects\cryptopp git checkout -qf 3504f1da2591d8b84e356527ed41dc6209eafa06 msbuild "C:\projects\cryptopp\cryptest.sln" /verbosity:minimal /logger:"C:\Program

How to publish beta nuget packages out of AppVeyor

让人想犯罪 __ 提交于 2019-12-04 10:56:14
Here is the behavior I'm trying to achieve in AppVeyor Build the code (stamp AssemblyInfo with 1.2.3.{build} ) Test the code Create the nuget package if the tests passed Publish the beta package if the package created successfully ( 1.2.3-beta-{build} ) Also make the package available in artifacts. Ideally when publishing a nuget package it would be published as prerelease. In NuGet, this is done by adding alpha characters to the end of the package version. It is also considered bad practice to overwrite an existing package (indeed, many nuget implementations do not allow this). AppVeyor does

Building R packages with Packrat and AppVeyor

≯℡__Kan透↙ 提交于 2019-12-04 08:46:48
Can someone point me towards a working example where packrat is used with AppVeyor to build an R package? Searching through Google and GitHub, I can't find any packrat-enable package that uses AppVeyor. Does the appveyor.yml file need to change? Are there some settings I need to add through the AppVeyor website? I have a very minimal package ( testthat is the only dependency) that broke AppVeyor builds. Here is the code frozen for that commit . Here is the AppVeyor log . (If this SO question sounds familiar, I'm about to ask a similar question for Travis-CI .) Ben Yes, the solution here is

Unauthorized response from GitHub API on Appveyor

谁都会走 提交于 2019-12-02 04:31:57
问题 We just started with a new project and trying to get CI working via Appveyor. It is an Aurelia web application so we need jspm on the build server. On my workstation I configured jspm manually as suggested by @guybedford in his answer below and configured my authtoken in appveyor.yml script: - jspm config registries.github.auth %JSPM_GITHUB_AUTH_TOKEN% Currently my appveyor.yml looks like this, based on the Auto configuring section from JSPM version: 1.0.{build} os: Visual Studio 2015 build:

'pip setup.py bdist_wheel' no longer builds forced non-pure wheels

本秂侑毒 提交于 2019-12-01 03:59:44
I have a project that compiles with C extensions on Linux, but without them on Windows. When I first generated the wheel files on Windows with python setup.py bdist_wheel , they became universal, and I could not upload them to PyPI as these universal wheels are preferred by pip for installation over the .tar.gz uploads (the result from python setup.py sdist ). The trick around this was to specify in the setup.py : Distribution.is_pure = lambda *args: False or by subclassing Distribution : class BinaryDistribution(Distribution): def is_pure(self): return False and calling setup() in setup.py