naiveproxy/.appveyor.yml

29 lines
932 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
- bash -c 'cd src; ./get-clang.sh'
2019-01-11 16:09:54 +03:00
- bash -c '~/.cargo/bin/sccache -s'
- bash -c 'cd src; ./build.sh'
2019-01-11 16:09:54 +03:00
- bash -c '~/.cargo/bin/sccache -s'
- bash -c 'mkdir naive-$APPVEYOR_REPO_TAG_NAME-win64'
- bash -c 'cp src/out/Release/naive.exe src/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/'
2019-01-11 16:09:54 +03:00
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