Skip to content

Commit e8156e6

Browse files
committed
let's build with appveyor
Signed-off-by: sndnvaps <sndnvaps@gmail.com>
1 parent 06e74e3 commit e8156e6

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

.appveyor.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
image:
2+
- Visual Studio 2015
3+
before_build:
4+
- cmd: del SQLite3.sln
5+
- cmd: premake.bat
6+
7+
platform:
8+
- Win32
9+
# - x64
10+
11+
configuration:
12+
- Release_AES256
13+
# - Debug_AES256
14+
# - Debug_AES128
15+
# - Release_AES128
16+
17+
after_build:
18+
- cmd: dir /a *
19+
- cmd: 7z a SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\bin\sqlite3_dll\%CONFIGURATION%\*.dll
20+
- cmd: 7z a SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\bin\sqlite3_lib\%CONFIGURATION%\*.lib
21+
- cmd: 7z a SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\bin\sqlite3_shell\%CONFIGURATION%\*.exe
22+
- cmd: dir /a
23+
- cmd: rename SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip SQLite3-Encryption.zip
24+
- ps: Push-AppveyorArtifact SQLite3-Encryption.zip
25+
26+
deploy:
27+
release: SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%
28+
description: "Add Encrypt func to sqlite3 shell"
29+
provider: GitHub
30+
auth_token:
31+
secure: YiRkHuWnabCRwdYGhwkPZRSUJmVb/UeKn3YEQ+0mLTfIsGKrVUfDKdObe/MsYf1A
32+
draft: false
33+
prerelease: false
34+
on:
35+
branch: master
36+
appveyor_repo_tag: true

0 commit comments

Comments
 (0)