This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
forked from runatlantis/atlantis
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add `gh-team-whitelist` command line argument * Update `description` * Update `description` * Address comments * Update imports for testing * Add `build-harness` * Update `Makefile` * Update `.travis.yml` * Update `.travis.yml` * Update `.travis.yml` * Update `Dockerfile` * Update `Dockerfile` * Update `Dockerfile` * Update `.travis.yml` * Update `.travis.yml` * Update `.travis.yml` * Update `.travis.yml` * Update `.travis.yml` * Update `.travis.yml`
- Loading branch information
Showing
161 changed files
with
785 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
sudo: required | ||
language: go | ||
go: | ||
- 1.11.x | ||
addons: | ||
apt: | ||
packages: | ||
- git | ||
- make | ||
- curl | ||
|
||
env: | ||
- DOCKER_IMAGE_NAME=cloudposse/atlantis | ||
|
||
services: | ||
- docker | ||
|
||
install: | ||
- make init | ||
- make travis/docker-login | ||
- make go/deps-dev | ||
|
||
script: | ||
- make go/build/local | ||
- gox -osarch="windows/386 windows/amd64 freebsd/arm netbsd/386 netbsd/amd64 netbsd/arm linux/s390x linux/arm darwin/386 darwin/amd64 linux/386 linux/amd64 freebsd/amd64 freebsd/386 openbsd/386 openbsd/amd64" -output "release/atlantis_{{.OS}}_{{.Arch}}" | ||
- ls -l release/ | ||
- make docker/build | ||
|
||
after_success: | ||
- make travis/docker-tag-and-push | ||
|
||
deploy: | ||
- provider: releases | ||
api_key: "$GITHUB_API_KEY" | ||
file_glob: true | ||
file: "release/*" | ||
skip_cleanup: true | ||
on: | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.