Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Hills committed Oct 18, 2018
0 parents commit 0b2e7a7
Show file tree
Hide file tree
Showing 14 changed files with 1,101 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: 2
jobs:
build:
docker:
- image: golang:1.11-alpine
environment:
- CGO_ENABLED: 0

working_directory: /go/src/github.com/springload/lp-aws-saml

steps:
- run:
name: update and install tool dependencies
command: |-
apk update && apk add --no-cache git openssh-client
- checkout

- run:
name: Install go dep
command: go get -u github.com/golang/dep/cmd/dep

- run:
name: install go deps
command: dep ensure -vendor-only

- run:
name: build
command: go build

- run:
name: print help
command: ./lp-aws-saml -h
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.envrc
lp-aws-saml
*.log
dist/
vendor/
25 changes: 25 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# .goreleaser.yml
builds:
- binary: lp-aws-saml
goos:
- darwin
- linux
- windows
goarch:
- amd64
nfpm:
vendor: Springload
homepage: https://springload.co.nz

maintainer: DevOps team
description: Temporary Credentials for AWS CLI for LastPass SAML login
license: Apache 2.0
formats:
- deb
- rpm
brew:
name: lp-aws-saml
github:
owner: springload
name: homebrew-tools
folder: Formula
309 changes: 309 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0b2e7a7

Please sign in to comment.