AdGuardHome/.travis.yml

79 lines
1.6 KiB
YAML
Raw Normal View History

2019-12-13 10:31:10 +00:00
if: repo = AdguardTeam/AdGuardHome
2018-08-30 16:16:37 +01:00
language: go
sudo: false
2019-01-29 12:11:11 +00:00
2018-08-30 16:16:37 +01:00
go:
2019-11-25 11:10:04 +00:00
- 1.13.x
os:
- linux
- osx
2019-01-04 18:00:06 +00:00
before_install:
- nvm install node
- npm install -g npm
2019-10-02 14:39:32 +01:00
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.19.1
2019-01-04 18:00:06 +00:00
install:
- npm --prefix client install
2019-01-29 12:11:11 +00:00
cache:
directories:
- $HOME/.cache/go-build
- $HOME/gopath/pkg/mod
- $HOME/Library/Caches/go-build
2018-08-30 16:16:37 +01:00
script:
2019-10-02 13:41:14 +01:00
- /bin/bash ci.sh
2018-08-30 16:16:37 +01:00
2019-01-25 09:55:13 +00:00
after_success:
2019-01-29 12:11:11 +00:00
- bash <(curl -s https://codecov.io/bash)
2019-08-16 11:47:51 +01:00
notifications:
2019-08-16 14:08:56 +01:00
slack: performix:yXTihlSzsLFSZiqbXMNzvTSX
2019-08-16 11:47:51 +01:00
2019-01-29 12:11:11 +00:00
matrix:
include:
# Release build configuration
2019-12-13 10:31:10 +00:00
- if: repo = AdguardTeam/AdGuardHome
2019-01-29 12:11:11 +00:00
- name: release
go:
2019-11-25 11:10:04 +00:00
- 1.13.x
2019-01-29 12:11:11 +00:00
os:
- linux
script:
- node -v
- npm -v
# Prepare releases
- ./release.sh
- ls -l dist
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file:
- dist/AdGuardHome_*
on:
repo: AdguardTeam/AdGuardHome
tags: true
draft: true
file_glob: true
skip_cleanup: true
- name: docker
2019-12-13 10:31:10 +00:00
if: type != pull_request AND (branch = master OR tag IS present) AND repo = AdguardTeam/AdGuardHome
2019-01-29 12:11:11 +00:00
go:
2019-11-25 11:10:04 +00:00
- 1.13.x
2019-01-29 12:11:11 +00:00
os:
- linux
services:
- docker
before_script:
- nvm install node
- npm install -g npm
script:
- docker login -u="$DOCKER_USER" -p="$DOCKER_PASSWORD"
- ./build_docker.sh
after_script:
2019-01-29 12:18:36 +00:00
- docker images