mirror of https://github.com/go-gitea/gitea.git
Merge pull request #507 from codeskyblue/dev
update .gobuild.yml inorder to support sqlite for amd64 arch
This commit is contained in:
commit
263fc76b87
|
@ -10,3 +10,12 @@ filesets:
|
||||||
- README_ZH.md
|
- README_ZH.md
|
||||||
excludes:
|
excludes:
|
||||||
- \.git
|
- \.git
|
||||||
|
settings:
|
||||||
|
build: |
|
||||||
|
if test "$GOOS" = "windows" -a "$GOARCH" = "386"
|
||||||
|
then
|
||||||
|
go install -v
|
||||||
|
else
|
||||||
|
go get -v -tags "sqlite redis memecache" github.com/gogits/gogs
|
||||||
|
go install -v -tags "sqlite redis memecache"
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in New Issue