-
Notifications
You must be signed in to change notification settings - Fork 74
/
.travis.yml
39 lines (32 loc) · 880 Bytes
/
.travis.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
language: go
go:
- "1.x"
- "1.9"
- "1.10.x"
- master
go_import_path: github.com/plouc/go-gitlab-client
sudo: required
services:
- docker
before_install:
- docker pull golang:1.9-alpine
script:
- make install --no-print-directory
- make test --no-print-directory
- make cli_build_all --no-print-directory
- make cli_checksums --no-print-directory
deploy:
provider: releases
api_key:
secure: UXQgBNdZdK+Y8GFB/qgS4KclcfH7fWSsh6Wy1gGCEEKvGpJ1JXd3zng9FWDfYIII00Oe6c9rS2wEeJIE+5w1cPr+KXic8OcYoAA6gGZ26tibsz6zkKHV5++Qako5t714R54+7Icjm50RcIe3+BG0Ze0n4m6qfFGgEracpZxEjjI=
file:
- cli/build/darwin-amd64-glc
- cli/build/linux-amd64-glc
- cli/build/linux-386-glc
- cli/build/linux-arm-glc
- cli/build/linux-arm64-glc
- cli/build/alpine-amd64-glc
- cli/build/checksums.txt
on:
repo: plouc/go-gitlab-client
tags: true