Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4d02031
add vendor dir, simple build.sh, route package
Apr 18, 2018
c22c823
add space to align
Apr 18, 2018
e2ec1ff
Merge branch 'develop' into feature/routing
Apr 18, 2018
8fadd6b
remove .gitkeep
Apr 18, 2018
736656c
add consistent hash
Apr 18, 2018
c4628fc
enlarge ring namespace to uint64 instead of uint32, use fnv64-a inste…
Apr 20, 2018
f5ab651
fix file name typo :-p
Apr 20, 2018
5c172b5
hash ring can store NodeInfo, all UT passed, Cheers
Apr 20, 2018
a7c2a40
DHT by consistent hash RPC works now, need to implement more API
Apr 25, 2018
c11ea34
format code, need some tools to do this automaticly
Apr 25, 2018
e63071c
add .travis.yml for CI
Apr 25, 2018
f955958
fix build
Apr 25, 2018
d6012c2
add reviewdog at Travis
Apr 25, 2018
41d765e
add dep install
Apr 25, 2018
3d9d6b3
fix missing goverage golint for Travis
Apr 25, 2018
0204c57
fix build.sh use default GOOS GOARCH
Apr 25, 2018
d76a6a0
update Travis key
Apr 25, 2018
ea85542
for reviewdog test
Apr 25, 2018
b03602a
run test and goverage
Apr 25, 2018
757fa30
fix .travis.yml
Apr 25, 2018
ee047cf
fix .travis.yml
Apr 25, 2018
b014d17
fix travis.yml .....
Apr 25, 2018
3644774
fix travis
Apr 25, 2018
3216c2f
try reviewdog
Apr 26, 2018
edf646f
make golint happy
Apr 26, 2018
f4daa08
fix golint issue, add necessary comment
Apr 26, 2018
ce2adce
fix UT issue, typo
Apr 26, 2018
db9c714
use thunderdb api token
Apr 26, 2018
5c238e6
add graphic dep analysis
Apr 27, 2018
67fe296
add analysisVendor.sh to generate dep tree png
May 2, 2018
a18a760
add test case
May 2, 2018
0179cb7
add Envelope to RPC proto
May 2, 2018
f36541c
add new vendor
May 2, 2018
6bac220
add ignore
May 2, 2018
2b53cd1
Merge branch 'develop' of github.com:thunderdb/ThunderDB into develop
May 2, 2018
e643ce2
Merge branch 'develop' into feature/routing
May 2, 2018
313f331
ignore 'vendor/' 'server/' 'utils/' on golint
May 2, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix build.sh use default GOOS GOARCH
  • Loading branch information
auxten
auxten committed Apr 25, 2018
commit 0204c57d3842280e5ba89eacfcc20a9b3c044bc0
6 changes: 4 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ cd `dirname $0`
version=`getversion`
pkgpath="github.com/thunderdb/ThunderDB/cmd/thunderdbd"

go build -ldflags "-X main.version=${version}" -o bin/thunderdbd ${pkgpath}

#echo "build thunderdbd-linux"
#GOOS=linux GOARCH=amd64 go build -ldflags "-X main.version=${version}" -o bin/thunderdbd-linux ${pkgpath}

echo "build thunderdbd-osx"
GOOS=darwin GOARCH=amd64 go build -ldflags "-X main.version=${version}" -o bin/thunderdbd-osx ${pkgpath}
#echo "build thunderdbd-osx"
#GOOS=darwin GOARCH=amd64 go build -ldflags "-X main.version=${version}" -o bin/thunderdbd-osx ${pkgpath}

#echo "build thunderdbd-windows"
#GOOS=windows GOARCH=386 go build -ldflags "-X main.version=${version}" -o bin/thunderdbd-win ${pkgpath}
Expand Down