appveyor Questions
1
I am deploying a Nuxt application with Appveyor over Azure App Service Zip Deploy, but I am having trouble with the full deployment process being incredibly slow (Around 30+ minutes).
It seems that...
Tatouay asked 14/9, 2021 at 12:40
4
Solved
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 spee...
Sigismund asked 7/7, 2015 at 20:2
3
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, an...
Burnett asked 31/1, 2016 at 9:56
5
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 retu...
1
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 use...
Lyso asked 21/5, 2019 at 11:38
3
Solved
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 ...
Salutation asked 12/1, 2018 at 23:23
2
Solved
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 ca...
Straightout asked 25/4, 2017 at 12:31
1
Solved
TL;DR
I'm building an ASP.NET app using docker build; when I run the build on my local machine, it quickly executes because I'm making use of the Build cache.
Step 1/10 : FROM microsoft/aspnetcor...
Homo asked 16/4, 2018 at 6:55
4
Solved
I want to run some xUnit tests on AppVeyor that needs an available instance of redis.
I didn't found Redis within the "Service" of AppVeyor so I end up with a custom solution, as you can see from t...
2
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 p...
Northwestward asked 16/4, 2017 at 19:34
1
Solved
We are experiencing AppVeyor x64 build failures, and trying a suggestion to set PlatformToolset to DefaultPlatformToolset. The property value is undocumented, so we want to thoroughly test it.
We ...
Affirm asked 2/8, 2017 at 5:26
1
Solved
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, somet...
Apologist asked 30/3, 2017 at 10:15
1
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...
Freestone asked 10/3, 2017 at 20:55
1
Solved
I have an appveyor.yml definition which contains the fragment
init:
- ps: $Env:LABEL = If ($Env:APPVEYOR_REPO_TAG) { "Tag" + $Env:APPVEYOR_REPO_TAG_NAME } else { "nontaglabel" }
When later tryin...
Roee asked 29/11, 2016 at 16:24
1
Solved
In order to do some image processing using the Node library, Sharp, I had to upgrade my node executable on Azure App Service to 64-bits. I did this by downloading the executable manually and then s...
2
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 ...
Brisco asked 17/11, 2016 at 7:17
2
Solved
Is it possible to use AppVeyor as a Windows Qt continuous integration service?
Ripieno asked 27/10, 2014 at 10:56
1
Solved
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 hav...
1
Solved
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....
1
Solved
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 "...
Knotted asked 30/12, 2015 at 11:25
1
Solved
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?
1
Solved
I am trying to label a repository after a successful build in AppVeyor. I have read the following resources:
Environment variables
appveyor.yml reference
Pushing to remote Git repository from a b...
Organometallic asked 21/5, 2015 at 23:19
1
© 2022 - 2024 — McMap. All rights reserved.