diff options
author | 无闻 <u@gogs.io> | 2014-12-29 20:07:10 +0800 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2014-12-29 20:07:10 +0800 |
commit | 37566f71a9ecb7a6c026176b6dbb0d84f3d83432 (patch) | |
tree | 12112a19f02ba44460f0e2b8eceea03867e71256 /scripts | |
parent | afdb0c7f9de4b5290d86eb3cc3b7dae8a70139b8 (diff) | |
parent | 35dd41c3a283736d5d021e73b9a3f64e2ba062ab (diff) |
Merge pull request #787 from andre-hub/dev
flexible the build scripts and add a freebsd build script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 42 | ||||
-rwxr-xr-x | scripts/build_freebsd.sh | 27 | ||||
-rwxr-xr-x | scripts/build_linux64.sh | 46 |
3 files changed, 76 insertions, 39 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 03b8077b..ea43bdaf 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,21 +1,25 @@ -rm -rf output -mkdir output +outPath=./output + +rm -rf $outPath +mkdir $outPath + go build ../gogs.go chmod +x gogs -mv gogs ./output/ -cp -r ../conf/ ./output/conf/ -cp -r ../custom/ ./output/custom/ -cp -r ./dockerfiles/ ./output/dockerfiles/ -cp -r ../public/ ./output/public/ -cp -r ../templates/ ./output/templates/ -cp ../cert.pem ./output/ -cp ../CONTRIBUTING.md ./output/ -cp gogs_supervisord.sh ./output/ -cp ../key.pem ./output/ -cp ../LICENSE ./output/ -cp ../README.md ./output/ -cp ../README_ZH.md ./output/ -cp start.bat ./output/ -cp start.sh ./output/ -cp ../wercker.yml ./output/ -cp mysql.sql ./output/ +mv gogs $outPath/ + +cp -r ../conf/ $outPath/conf/ +cp -r ../custom/ $outPath/custom/ +cp -r dockerfiles/ $outPath/dockerfiles/ +cp -r ../public/ $outPath/public/ +cp -r ../templates/ $outPath/templates/ +cp ../cert.pem $outPath/ +cp ../CONTRIBUTING.md $outPath/ +cp gogs_supervisord.sh $outPath/ +cp ../key.pem $outPath/ +cp ../LICENSE $outPath/ +cp ../README.md $outPath/ +cp ../README_ZH.md $outPath/ +cp start.bat $outPath/ +cp start.sh $outPath/ +cp ../wercker.yml $outPath/ +cp mysql.sql $outPath/
\ No newline at end of file diff --git a/scripts/build_freebsd.sh b/scripts/build_freebsd.sh new file mode 100755 index 00000000..b53c6ac0 --- /dev/null +++ b/scripts/build_freebsd.sh @@ -0,0 +1,27 @@ +outPlattform=freebsd +outArch=amd64 +outPath=./output_$outPlattform_$outArch + +rm -rf $outPath +mkdir $outPath + +CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../gogs.go +chmod +x gogs +mv gogs $outPath/ + +cp -r ../conf/ $outPath/conf/ +cp -r ../custom/ $outPath/custom/ +cp -r dockerfiles/ $outPath/dockerfiles/ +cp -r ../public/ $outPath/public/ +cp -r ../templates/ $outPath/templates/ +cp ../cert.pem $outPath/ +cp ../CONTRIBUTING.md $outPath/ +cp gogs_supervisord.sh $outPath/ +cp ../key.pem $outPath/ +cp ../LICENSE $outPath/ +cp ../README.md $outPath/ +cp ../README_ZH.md $outPath/ +cp start.bat $outPath/ +cp start.sh $outPath/ +cp ../wercker.yml $outPath/ +cp mysql.sql $outPath/
\ No newline at end of file diff --git a/scripts/build_linux64.sh b/scripts/build_linux64.sh index eb6c04e5..528fc54c 100755 --- a/scripts/build_linux64.sh +++ b/scripts/build_linux64.sh @@ -1,21 +1,27 @@ -rm -rf output_linux_64 -mkdir output_linux_64 -CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ../gogs.go +outPlattform=linux +outArch=amd64 +outPath=./output_$outPlattform_$outArch + +rm -rf $outPath +mkdir $outPath + +CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../gogs.go chmod +x gogs -mv gogs ./output_linux_64/ -cp -r ../conf/ ./output_linux_64/conf/ -cp -r ../custom/ ./output_linux_64/custom/ -cp -r dockerfiles/ ./output_linux_64/dockerfiles/ -cp -r ../public/ ./output_linux_64/public/ -cp -r ../templates/ ./output_linux_64/templates/ -cp ../cert.pem ./output_linux_64/ -cp ../CONTRIBUTING.md ./output_linux_64/ -cp gogs_supervisord.sh ./output_linux_64/ -cp ../key.pem ./output_linux_64/ -cp ../LICENSE ./output_linux_64/ -cp ../README.md ./output_linux_64/ -cp ../README_ZH.md ./output_linux_64/ -cp start.bat ./output_linux_64/ -cp start.sh ./output_linux_64/ -cp ../wercker.yml ./output_linux_64/ -cp mysql.sql ./output_linux_64/
\ No newline at end of file +mv gogs $outPath/ + +cp -r ../conf/ $outPath/conf/ +cp -r ../custom/ $outPath/custom/ +cp -r dockerfiles/ $outPath/dockerfiles/ +cp -r ../public/ $outPath/public/ +cp -r ../templates/ $outPath/templates/ +cp ../cert.pem $outPath/ +cp ../CONTRIBUTING.md $outPath/ +cp gogs_supervisord.sh $outPath/ +cp ../key.pem $outPath/ +cp ../LICENSE $outPath/ +cp ../README.md $outPath/ +cp ../README_ZH.md $outPath/ +cp start.bat $outPath/ +cp start.sh $outPath/ +cp ../wercker.yml $outPath/ +cp mysql.sql $outPath/
\ No newline at end of file |