Create a FreeBSD build

closes #766
This commit is contained in:
Dirk Pahl 2016-02-29 15:19:44 +01:00 committed by Cameron Sparr
parent 3568fb9f93
commit ea7cbc781e
2 changed files with 4 additions and 1 deletions

View File

@ -72,12 +72,14 @@ targets = {
supported_builds = {
'darwin': [ "amd64", "i386" ],
'windows': [ "amd64", "i386" ],
'linux': [ "amd64", "i386", "arm" ]
'linux': [ "amd64", "i386", "arm" ],
'freebsd': [ "amd64" ]
}
supported_packages = {
"darwin": [ "tar", "zip" ],
"linux": [ "deb", "rpm", "tar", "zip" ],
"windows": [ "zip" ],
'freebsd': [ "tar" ]
}
supported_tags = {
# "linux": {

View File

@ -77,5 +77,6 @@ if [ $? -eq 0 ]; then
echo $tag
exit_if_fail ./scripts/build.py --package --version=$tag --platform=linux --arch=all --upload
exit_if_fail ./scripts/build.py --package --version=$tag --platform=windows --arch=all --upload
exit_if_fail ./scripts/build.py --package --version=$tag --platform=freebsd --arch=all --upload
mv build $CIRCLE_ARTIFACTS
fi