-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
appveyor.yml
42 lines (36 loc) · 976 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
37
38
39
40
41
42
environment:
matrix:
- TARGET: i686-pc-windows-msvc
CHANNEL: stable
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe --default-host %TARGET% --default-toolchain %CHANNEL% -y
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -Vv
- cargo -V
- ps: iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
- scoop bucket add southclaws https://github.com/Southclaws/scoops.git
- scoop install sampctl
- appveyor-retry choco install make
matrix:
fast_finish: true
before_build:
- make setup
build_script:
- make release
test_script:
- make run
artifacts:
- path: plugins/tgconnector.dll
name: tgconnector
deploy:
- provider: BinTray
username: Sreyas-Sreelal
api_key:
secure: avSVuY8Q8nSYesj3ce2v8cM6+aTSivkTzGozcCBMpJr+I0Td73+fVHTp6dAHcGw6
subject: sreyas-sreelal
repo: tgconnector
package: builds
publish: true
version: latest
override: true