mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 06:05:51 -06:00
13 lines
No EOL
618 B
YAML
13 lines
No EOL
618 B
YAML
image: Visual Studio 2019
|
|
before_build:
|
|
- ps: Invoke-WebRequest -Uri https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.15.1-7fc8b10-win-x64-dev.tar.gz -OutFile C:\qmlnet-qt.tar.gz
|
|
- cmd: 7z x C:\qmlnet-qt.tar.gz -oC:\
|
|
- cmd: 7z x C:\qmlnet-qt.tar -oC:\qmlnet-qt
|
|
- cmd: rm -r C:\Tools\GitVersion\
|
|
- cmd: dotnet tool install -g GitVersion.Tool --version 5.3.4
|
|
- 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 } |