TUN-804: create makefile recipe to release cloudflared using equinox

This commit is contained in:
Chung-Ting Huang
2018-07-26 15:45:18 -05:00
parent e90444cad8
commit 8f7cef338b
2 changed files with 72 additions and 3 deletions

View File

@@ -8,7 +8,6 @@ stretch:
- build-essential
post-cache:
- export GOPATH=/cfsetup_build/
- export CGO_ENABLED=1
- export GOOS=linux
- export GOARCH=amd64
- make cloudflared
@@ -21,10 +20,63 @@ stretch:
- rubygem-fpm
post-cache:
- export GOPATH=/cfsetup_build/
- export CGO_ENABLED=1
- export GOOS=linux
- export GOARCH=amd64
- make cloudflared-deb
release-linux-amd64:
build_dir: *build_dir
builddeps:
- *pinned_go
- build-essential
post-cache:
- export GOPATH=/cfsetup_build/
- export GOOS=linux
- export GOARCH=amd64
- make release
release-linux-armv6:
build_dir: *build_dir
builddeps:
- *pinned_go
- crossbuild-essential-armhf
- gcc-arm-linux-gnueabihf
post-cache:
- export GOPATH=/cfsetup_build/
- export GOOS=linux
- export GOARCH=arm
- export CC=arm-linux-gnueabihf-gcc
- make release
release-linux-386:
build_dir: *build_dir
builddeps:
- *pinned_go
- gcc-multilib
post-cache:
- export GOPATH=/cfsetup_build/
- export GOOS=linux
- export GOARCH=386
- make release
release-windows-amd64:
build_dir: *build_dir
builddeps:
- *pinned_go
- gcc-mingw-w64
post-cache:
- export GOPATH=/cfsetup_build/
- export GOOS=windows
- export GOARCH=amd64
- export CC=x86_64-w64-mingw32-gcc
- make release
release-windows-386:
build_dir: *build_dir
builddeps:
- *pinned_go
- gcc-mingw-w64
post-cache:
- export GOPATH=/cfsetup_build/
- export GOOS=windows
- export GOARCH=386
- export CC=i686-w64-mingw32-gcc-win32
- make release
test:
build_dir: *build_dir
builddeps:
@@ -32,7 +84,6 @@ stretch:
- build-essential
post-cache:
- export GOPATH=/cfsetup_build/
- export CGO_ENABLED=1
- export GOOS=linux
- export GOARCH=amd64
- make test