blob: 14f2ab22fe22e084f94d840049212303f663829a [file] [log] [blame]
# See http://www.appveyor.com/docs/appveyor-yml
version: '{build}'
branches:
except:
- /^github.*$/
init:
- git config --global core.autocrlf input
shallow_clone: true
# Clone git submodules. See:
# - https://github.com/appveyor/ci/issues/899#issuecomment-567280434
# - https://www.appveyor.com/docs/global-yml/#cloning
clone_script:
- ps: >-
if (-Not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
git clone -q --depth 1 --branch=$env:APPVEYOR_REPO_BRANCH https://github.com/$env:APPVEYOR_REPO_NAME.git $env:APPVEYOR_BUILD_FOLDER
cd $env:APPVEYOR_BUILD_FOLDER
git checkout -qf $env:APPVEYOR_REPO_COMMIT
} else {
git clone -q --depth 1 https://github.com/$env:APPVEYOR_REPO_NAME.git $env:APPVEYOR_BUILD_FOLDER
cd $env:APPVEYOR_BUILD_FOLDER
git fetch -q origin +refs/pull/$env:APPVEYOR_PULL_REQUEST_NUMBER/merge:
git checkout -qf FETCH_HEAD
}
- cmd: git submodule update --init --depth 1 --recursive
cache:
- 5.15.2-0-202011130602qtbase-Windows-Windows_10-MSVC2019-Windows-Windows_10-X86.7z
- 5.15.2-0-202011130602qtbase-Windows-Windows_10-MSVC2019-Windows-Windows_10-X86_64.7z
- 5.15.2-0-202011130602qttools-Windows-Windows_10-MSVC2019-Windows-Windows_10-X86.7z
- 5.15.2-0-202011130602qttools-Windows-Windows_10-MSVC2019-Windows-Windows_10-X86_64.7z
# https://www.appveyor.com/docs/windows-images-software/
image: Visual Studio 2019
environment:
MSBUILD_FLAGS: /verbosity:minimal /maxcpucount
matrix:
- job_name: msvc32
TARGET: win32
- job_name: msvc64
TARGET: win64
matrix:
fast_finish: true
build_script:
- ps: .\ci\build-msvc.ps1 -target $Env:TARGET
artifacts:
- path: build/apitrace-*.7z
deploy:
provider: GitHub
auth_token:
secure: gjIEc0c2BefRL7rHhypJA57Swohq5bTnyJoqT6U7jSzPiYc5GS5pt8jfKoChIzuE
artifact: /.*\.7z/
on:
appveyor_repo_tag: true