naiveproxy/.appveyor.yml

30 lines
912 B
YAML
Raw Normal View History

2019-01-11 16:09:54 +03:00
version: '{build}'
image: Visual Studio 2017
install:
- cinst ninja
cache:
- '%USERPROFILE%\.cargo\bin'
- '%LOCALAPPDATA%\Mozilla\sccache'
build_script:
- bash ./tools/import-upstream.sh
- cd src
- bash ./get-clang.sh
- bash -c '~/.cargo/bin/sccache -s'
- bash ./build.sh
- bash -c '~/.cargo/bin/sccache -s'
- bash -c 'mkdir naive-$APPVEYOR_REPO_TAG_NAME-win64'
- bash -c 'cp out/Release/naive.exe config.json LICENSE naive-$APPVEYOR_REPO_TAG_NAME-win64/'
- bash -c '7z a ../naive-$APPVEYOR_REPO_TAG_NAME-win64.zip naive-$APPVEYOR_REPO_TAG_NAME-win64/'
test: off
artifacts:
- path: naive-$(APPVEYOR_REPO_TAG_NAME)-win64.zip
deploy:
- provider: GitHub
auth_token:
secure: h+qwIoof/3ET7LOldWwlb6XQLmpxYPuaZL4YcFQ8QyclfBrnywzwzDaSqdE2unPg
artifact: naive-$(APPVEYOR_REPO_TAG_NAME)-win64.zip
prerelease: true
force_update: true
on:
APPVEYOR_REPO_TAG: true