Questions tagged [appveyor]

A hosted continuous integration service for open source projects.

AppVeyor is a hosted continuous integration (CI) service for primarily for the Windows open source community. It is integrated with GitHub and offers first class support for C# .net projects.

The CI process can be defined in code using YML and it supports PowerShell to script the (CI) steps.

See the documentation for further information.

355 questions
19
votes
1 answer

ASP.NET Core 2.2 - Password reset not working on Azure (Invalid token)

I have an ASP.NET Core 2.2 application running on multiple instances on an Azure Web App; it uses EF Core 2.2 and ASP.NET Identity. Everything works fine except the Password Reset flow where a user receives a link with token per e-mail and needs to…
17
votes
4 answers

Disadvantages of shallow cloning on Travis and other CI services?

Most CI services provide a way to shallow clone a repository. For example, on Travis: git: depth: 1 or on AppVeyor: clone_depth: 1 or shallow_clone: true This has the obvious benefit of speed, since you don't have to clone the whole repository.…
Chin
  • 19,717
  • 37
  • 107
  • 164
16
votes
5 answers

How to split a command over multiple lines in appveyor.yml

I would like to split a long build command across multiple lines in my appveyor.yml file, however I cannot get it to unwrap, so the build is failing when the first FOR command gets cut off and returns an error. I am not sure how to correctly split…
Malvineous
  • 25,144
  • 16
  • 116
  • 151
15
votes
2 answers

Build Qt project from AppVeyor

Is it possible to use AppVeyor as a Windows Qt continuous integration service?
Martin Delille
  • 11,360
  • 15
  • 65
  • 132
13
votes
3 answers

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

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…
Anthon
  • 69,918
  • 32
  • 186
  • 246
10
votes
3 answers

.NET Core Unit tests not shown in AppVeyor Tests window (and badge)

Follow up from this question, I'm currently setting up AppVeyor for my project (here) and my .NET Core tests are only shown in the console output but not in the Tests window. This is the link for the AppVeyor project:…
Sergio0694
  • 4,447
  • 3
  • 31
  • 58
10
votes
2 answers

How to run VCUpgrade before Appveyor build?

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…
jww
  • 97,681
  • 90
  • 411
  • 885
8
votes
1 answer

AppVeyor account for GitHub organization

I'm part of a GitHub organization developing a FOSS project. I'd like to run CI tests on Windows using AppVeyor. Currently I see my own fork of the project, and some other forks from people who have named me collaborator in GitHub. I don't see the…
MvG
  • 57,380
  • 22
  • 148
  • 276
7
votes
2 answers

Appveyor nuget analyser

I'm trying to invent good way to pack my Roslyn analyzer projects into NuGet. It requires specific NuGet package structure with .dll put into \analyzer\, not \lib\. For this to work, I have to call nuget pack .nuspec, not nuget pack…
Leotsarev
  • 1,040
  • 7
  • 23
7
votes
1 answer

Determine current path with DNX projects

Target For integration tests I want to load a custom XML configuration. This XML is located in a folder inside my integration test project. For further targets I want to use the new DNX projects. I know they are still in preview. Local tests work…
Benjamin Abt
  • 1,730
  • 18
  • 33
7
votes
1 answer

Redirection to 'NUL' failed: FileStream will not open Win32 devices

I am trying to remove some verbosity from a choco install command within AppVeyor. Here is what I been trying (as suggested here): if (Test-Path "C:/ProgramData/chocolatey/bin/swig.exe") { echo "using swig from cache" } else { choco install…
malat
  • 12,152
  • 13
  • 89
  • 158
6
votes
1 answer

How to run appveyor.yml script locally?

I want to install mlpack in windows and I found the appveyor.yml script in github. Instead of following and executing each step manually, is there a way to run this script in my laptop? Like, something similar to a bat file?
Sashank
  • 590
  • 7
  • 22
6
votes
1 answer

Deploy app settings to azure function app

Need help in finding a way to deploy my application's custom app setting via either - 1. Using appsettings.json created by my .funproj (vs tools for 2015) 2. appveyor's environment variables 3. Any other trick All I want is to avoid having to set…
Abhishek
  • 478
  • 6
  • 16
6
votes
2 answers

Invoke `cdb.exe` (windbg) to run noninteractively, and produce backtrace in case of crash?

I have a C++ project which I use with travis-ci. Right now, I build it using boost.build, and on travis, when I run the unit tests, I do it through gdb, so that I get a backtrace in the event of a crash. To make gdb do this noninteractively, I…
Chris Beck
  • 15,614
  • 4
  • 51
  • 87
6
votes
1 answer

How do I install PyPy on appveyor?

I have a Python extension that needs to be compiled against the PyPy interpreter on the Windows-based Appveyor continuous integration service. How do I get PyPy in that environment?
joeforker
  • 40,459
  • 37
  • 151
  • 246
1
2 3
23 24