Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
gh-team-whitelist test (#9)
Browse files Browse the repository at this point in the history
* 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
aknysh authored Oct 15, 2018
1 parent 0e4dc4f commit 42ec161
Show file tree
Hide file tree
Showing 161 changed files with 785 additions and 379 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ output
.terraform/
node_modules/
**/.vuepress/dist
helm/test-values.yaml
helm/test-values.yaml
dist/
build-harness
.build-harness
39 changes: 39 additions & 0 deletions .travis.yml
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
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 ${DEFAULT_TERRAFORM_VERSIO
ln -s /usr/local/bin/tf/versions/${DEFAULT_TERRAFORM_VERSION}/terraform /usr/local/bin/terraform

# copy binary
COPY atlantis /usr/local/bin/atlantis
COPY dist/bin/atlantis /usr/local/bin/atlantis

# copy docker entrypoint
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["server"]

Loading

0 comments on commit 42ec161

Please sign in to comment.