forked from macvk/dnsleaktest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (27 loc) · 735 Bytes
/
Copy path.travis.yml
File metadata and controls
29 lines (27 loc) · 735 Bytes
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
matrix:
include:
- language: go
os: linux
script: GOOS=windows GOARCH=386 go build -o dnsleaktest.exe dnsleaktest.go
before_deploy:
deploy:
provider: releases
api_key: "${GITHUB_OAUTH_TOKEN}"
file: dnsleaktest.exe
skip_cleanup: true
on:
repo: macvk/dnsleaktest
tags: true
- language: go
os: linux
script: go build -o dnsleaktest dnsleaktest.go
before_deploy:
deploy:
provider: releases
api_key: "${GITHUB_OAUTH_TOKEN}"
file: dnsleaktest
skip_cleanup: true
overwrite: true
on:
repo: macvk/dnsleaktest
tags: true