-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
36 lines (35 loc) · 932 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 1.0.{build}
image: Visual Studio 2017
environment:
matrix:
- arch: x86
- arch: x64
clone_folder: c:\solc-build
cache:
- C:\solc-build\boost_1_67_0-msvc-14.1-32.exe
- C:\solc-build\boost_1_67_0-msvc-14.1-64.exe
branches:
only:
- master
skip_tags: true
before_build:
- set RELEASE_TITLE=%DATE:~10,4%-%DATE:~4,2%-%DATE:~7,2%
- echo %RELEASE_TITLE%
- git submodule update --init --recursive || exit
build_script:
- build-win.bat %arch% Release || exit
- 7z a win-%arch%.zip %APPVEYOR_BUILD_FOLDER%/solidity/build-Release-x%arch%/libsolc/Release/solc.dll || exit
- appveyor PushArtifact win-%arch%.zip
deploy:
tag: $(RELEASE_TITLE)
release: $(RELEASE_TITLE)
description: Solc lib
provider: GitHub
auth_token:
secure: f6EFNwNS0jfHhqe8mjtCgIVyBlbGlCDNZH/Z2xTTlhLTpp1eFSPrBN9kZO9Uy8qx
artifact: win-%arch%.zip
force_update: true
draft: true
prerelease: false
on:
branch: master