Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gobuild-old/gobuild3
golang online build 3rd version
https://github.com/gobuild-old/gobuild3
Last synced: 3 months ago
JSON representation
golang online build 3rd version
- Host: GitHub
- URL: https://github.com/gobuild-old/gobuild3
- Owner: gobuild-old
- License: mit
- Created: 2014-09-20T15:13:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-13T04:10:40.000Z (almost 9 years ago)
- Last Synced: 2024-07-16T14:07:07.334Z (4 months ago)
- Language: JavaScript
- Homepage: http://gobuild.io
- Size: 5.37 MB
- Stars: 77
- Watchers: 7
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Project reopen on 2015-12-13. Beta version released
## Description
This repo is for the website `gobuild.io`, which offers a service that can easily build **golang** source code.Commit your repo address to gobuild.io and it will cross-compile for you and generate a download link.
Currently the site supports the following features:
* Platform support for linux, amd64-386-arm/windows, amd64-386/darwin and amd64-386
* CGO support
* Builds specified by branch, tag, or sha
* Rank the most downloaded and latest repos
* Custom build actions with `.gobuild.yml` files
* [godep](https://github.com/tools/godep) support## .gobuild.yml format
```yaml
author: [email protected]
description: >
Hmm. this is a test.
hahahafilesets:
includes:
- conf
- README.md
- LICENSE
excludes:
- \.git
depth: 3
settings:
targetdir: ""
build: |
test -d Godeps && go(){ godep go "$@";} ; go install -v
outfiles:
- packer
```
This is a full version of `.gobuild.yml`. This file should be committed to your repo with a directory containing go source code.Only `filesets.excludes` uses regex to filter files. Note that `filesets.includes` does *not* use regex.
(If you have any idea how includes could support regex, pull requests are welcome.)Use `packer` to check if `.gobuild.yml` is right.
go get github.com/gobuild/gobuild3/packer
`packer --init` can also generate a sample `.gobuild.yml`
`settings.targetdir` will set the env `GOBIN`, which will make sure `go install` installs to the right directory.
**Default values**:
* settings.build --- "test -d Godeps && go(){ godep go "$@";} ; go install -v"
* settings.build.outfiles --- the basename of $REPONAME. files will add `.exe` automatically when building for windows
* filesets.includes --- ["README.md", "LICENSE", "conf", "static", "views"]
* filesets.excludes --- ["\.git", ".*\\.go"]
* filesets.depths --- 3 # 0 for current dir depth
other settings default to empty.alias is not supported for `bash -c` -- I really don't know why.
## LICENSE
This repo is covered by the MIT LICENSE