Skip to content

Commit

Permalink
buildspec.yml for codebuild.
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislas committed Jun 16, 2018
1 parent 44faa87 commit ca0e43a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

set -e

env

go vet

go get github.com/mitchellh/gox
gox -os "linux darwin windows" -arch "386 amd64"

3 changes: 3 additions & 0 deletions build/clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

find . -name "skuld_*" | xargs rm
6 changes: 6 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 0.2

phases:
build:
commands:
- ./build/build.sh

0 comments on commit ca0e43a

Please sign in to comment.