forked from mandiant/flare-floss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
42 lines (35 loc) · 1.28 KB
/
.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
37
38
39
40
41
42
clone_depth: 2
environment:
matrix:
- PYTHON: "C:\\Python27"
ARCH: "32"
- PYTHON: "C:\\Python27-x64"
ARCH: "64"
init:
install:
- "%PYTHON%\\python.exe --version"
- "%PYTHON%\\Scripts\\pip install https://github.com/williballenthin/vivisect/zipball/master"
- "%PYTHON%\\Scripts\\pip install pyinstaller"
- ps: Set-Content "floss\\version.py" ( "__version__ = '{0}'" -f ( git describe --tags --always ) )
- "%PYTHON%\\Scripts\\pip install -e ."
- "%PYTHON%\\Scripts\\pyinstaller floss.spec"
- "move dist\\floss.exe dist\\floss%ARCH%.exe"
build: off
artifacts:
- path: "dist\\floss.exe"
- path: "dist\\floss%ARCH%.exe"
- path: "dist\\floss32.exe"
- path: "dist\\floss64.exe"
deploy:
- provider: S3
access_key_id:
# these are encrypted keys that can only be decrypted within AppVeyor.
# they provide access to the S3 bucket in which we place the final build artifacts.
# ref: https://www.appveyor.com/docs/how-to/secure-files/
secure: 62mhuS0Iui9H3jf/PdcZ3srxaX1frZacjH9SRIplljM=
secret_access_key:
secure: nP7uNhSUZZwamVfsS80Z+gBbMjSvAvYG/avK6pTKtH78jBcKeyfKFZSTM+siO6os
bucket: build-artifacts.floss.flare.fireeye.com
folder: appveyor
#artifact:
set_public: false