Skip to content

Commit

Permalink
Build for multiple targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
brocaar committed Apr 22, 2016
1 parent 0b97e55 commit c368f9d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ go:
- 1.6
script:
- docker-compose run --rm loraserver make test
- make package
- GOOS=linux GOARCH=amd64 make package
- GOOS=linux GOARCH=386 make package
- GOOS=linux GOARCH=arm make package
- GOOS=darwin GOARCH=amd64 make package
- GOOS=windows BINEXT=.exe GOARCH=386 make package
- GOOS=windows BINEXT=.exe GOARCH=amd64 make package
services:
- docker
deploy:
Expand Down

0 comments on commit c368f9d

Please sign in to comment.