mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-21 06:45:32 -06:00
12 lines
544 B
YAML
12 lines
544 B
YAML
image: Visual Studio 2017
|
|
before_build:
|
|
- ps: Invoke-WebRequest -Uri https://github.com/qmlnet/qmlnet/releases/download/ci/qt-5.12-windows-x64.zip -OutFile C:\qt.zip
|
|
- cmd: 7z x C:\qt.zip -oC:\Qt5120
|
|
- cmd: rm -r C:\Tools\GitVersion\
|
|
- cmd: dotnet tool install -g GitVersion.Tool --version 4.0.1-beta1-58
|
|
- cmd: dotnet gitversion > version.json
|
|
- cmd: git submodule update --init
|
|
build_script:
|
|
- cmd: build/appveyor.bat
|
|
after_build:
|
|
- ps: Get-ChildItem output\*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|