TUN-6590: Use Windows Teamcity agent to build binary
This commit is contained in:
parent
db4564e5b9
commit
b0f0741a9b
|
@ -0,0 +1,17 @@
|
||||||
|
VERSION=$(git describe --tags --always --match "[0-9][0-9][0-9][0-9].*.*")
|
||||||
|
echo $VERSION
|
||||||
|
|
||||||
|
export TARGET_OS=windows
|
||||||
|
# This controls the directory the built artifacts go into
|
||||||
|
export ARTIFACT_DIR=built_artifacts/
|
||||||
|
mkdir -p $ARTIFACT_DIR
|
||||||
|
windowsArchs=("amd64" "386")
|
||||||
|
for arch in ${windowsArchs[@]}; do
|
||||||
|
export TARGET_ARCH=$arch
|
||||||
|
# Copy exe into final directory
|
||||||
|
cp ./artifacts/cloudflared-windows-$arch.exe $ARTIFACT_DIR/cloudflared-windows-$arch.exe
|
||||||
|
cp ./artifacts/cloudflared-windows-$arch.exe ./cloudflared.exe
|
||||||
|
make cloudflared-msi
|
||||||
|
# Copy msi into final directory
|
||||||
|
mv cloudflared-$VERSION-$arch.msi $ARTIFACT_DIR/cloudflared-windows-$arch.msi
|
||||||
|
done
|
9
Makefile
9
Makefile
|
@ -198,7 +198,7 @@ cloudflared-pkg: cloudflared cloudflared.1
|
||||||
$(call build_package,osxpkg)
|
$(call build_package,osxpkg)
|
||||||
|
|
||||||
.PHONY: cloudflared-msi
|
.PHONY: cloudflared-msi
|
||||||
cloudflared-msi: cloudflared
|
cloudflared-msi:
|
||||||
wixl --define Version=$(VERSION) --define Path=$(EXECUTABLE_PATH) --output cloudflared-$(VERSION)-$(TARGET_ARCH).msi cloudflared.wxs
|
wixl --define Version=$(VERSION) --define Path=$(EXECUTABLE_PATH) --output cloudflared-$(VERSION)-$(TARGET_ARCH).msi cloudflared.wxs
|
||||||
|
|
||||||
.PHONY: cloudflared-darwin-amd64.tgz
|
.PHONY: cloudflared-darwin-amd64.tgz
|
||||||
|
@ -288,6 +288,13 @@ github-mac-upload:
|
||||||
python3 github_release.py --path artifacts/cloudflared-darwin-amd64.tgz --release-version $(VERSION) --name cloudflared-darwin-amd64.tgz
|
python3 github_release.py --path artifacts/cloudflared-darwin-amd64.tgz --release-version $(VERSION) --name cloudflared-darwin-amd64.tgz
|
||||||
python3 github_release.py --path artifacts/cloudflared-amd64.pkg --release-version $(VERSION) --name cloudflared-amd64.pkg
|
python3 github_release.py --path artifacts/cloudflared-amd64.pkg --release-version $(VERSION) --name cloudflared-amd64.pkg
|
||||||
|
|
||||||
|
.PHONY: github-windows-upload
|
||||||
|
github-windows-upload:
|
||||||
|
python3 github_release.py --path built_artifacts/cloudflared-windows-amd64.exe --release-version $(VERSION) --name cloudflared-windows-amd64.exe
|
||||||
|
python3 github_release.py --path built_artifacts/cloudflared-windows-amd64.msi --release-version $(VERSION) --name cloudflared-windows-amd64.msi
|
||||||
|
python3 github_release.py --path built_artifacts/cloudflared-windows-386.exe --release-version $(VERSION) --name cloudflared-windows-386.exe
|
||||||
|
python3 github_release.py --path built_artifacts/cloudflared-windows-386.msi --release-version $(VERSION) --name cloudflared-windows-386.msi
|
||||||
|
|
||||||
.PHONY: tunnelrpc-deps
|
.PHONY: tunnelrpc-deps
|
||||||
tunnelrpc-deps:
|
tunnelrpc-deps:
|
||||||
which capnp # https://capnproto.org/install.html
|
which capnp # https://capnproto.org/install.html
|
||||||
|
|
|
@ -7,15 +7,6 @@ export CGO_ENABLED=0
|
||||||
# This controls the directory the built artifacts go into
|
# This controls the directory the built artifacts go into
|
||||||
export ARTIFACT_DIR=built_artifacts/
|
export ARTIFACT_DIR=built_artifacts/
|
||||||
mkdir -p $ARTIFACT_DIR
|
mkdir -p $ARTIFACT_DIR
|
||||||
windowsArchs=("amd64" "386")
|
|
||||||
export TARGET_OS=windows
|
|
||||||
for arch in ${windowsArchs[@]}; do
|
|
||||||
export TARGET_ARCH=$arch
|
|
||||||
make cloudflared-msi
|
|
||||||
mv ./cloudflared.exe $ARTIFACT_DIR/cloudflared-windows-$arch.exe
|
|
||||||
mv cloudflared-$VERSION-$arch.msi $ARTIFACT_DIR/cloudflared-windows-$arch.msi
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
linuxArchs=("386" "amd64" "arm" "armhf" "arm64")
|
linuxArchs=("386" "amd64" "arm" "armhf" "arm64")
|
||||||
export TARGET_OS=linux
|
export TARGET_OS=linux
|
||||||
|
|
31
cfsetup.yaml
31
cfsetup.yaml
|
@ -133,7 +133,7 @@ stretch: &stretch
|
||||||
- make publish-deb
|
- make publish-deb
|
||||||
github-release-macos-amd64:
|
github-release-macos-amd64:
|
||||||
build_dir: *build_dir
|
build_dir: *build_dir
|
||||||
builddeps:
|
builddeps: &build_pygithub
|
||||||
- *pinned_go
|
- *pinned_go
|
||||||
- build-essential
|
- build-essential
|
||||||
- python3-dev
|
- python3-dev
|
||||||
|
@ -145,6 +145,27 @@ stretch: &stretch
|
||||||
- pip3 install pygithub==1.55
|
- pip3 install pygithub==1.55
|
||||||
post-cache:
|
post-cache:
|
||||||
- make github-mac-upload
|
- make github-mac-upload
|
||||||
|
github-release-windows:
|
||||||
|
build_dir: *build_dir
|
||||||
|
builddeps:
|
||||||
|
- *pinned_go
|
||||||
|
- build-essential
|
||||||
|
- python3-dev
|
||||||
|
- libffi-dev
|
||||||
|
- python3-setuptools
|
||||||
|
- python3-pip
|
||||||
|
- wget
|
||||||
|
# libmsi and libgcab are libraries the wixl binary depends on.
|
||||||
|
- libmsi-dev
|
||||||
|
- libgcab-dev
|
||||||
|
pre-cache:
|
||||||
|
- wget https://github.com/sudarshan-reddy/msitools/releases/download/v0.101b/wixl -P /usr/local/bin
|
||||||
|
- chmod a+x /usr/local/bin/wixl
|
||||||
|
- pip3 install pynacl==1.4.0
|
||||||
|
- pip3 install pygithub==1.55
|
||||||
|
post-cache:
|
||||||
|
- .teamcity/package-windows.sh
|
||||||
|
- make github-windows-upload
|
||||||
test:
|
test:
|
||||||
build_dir: *build_dir
|
build_dir: *build_dir
|
||||||
builddeps:
|
builddeps:
|
||||||
|
@ -204,13 +225,7 @@ stretch: &stretch
|
||||||
- .teamcity/update-homebrew-core.sh
|
- .teamcity/update-homebrew-core.sh
|
||||||
github-message-release:
|
github-message-release:
|
||||||
build_dir: *build_dir
|
build_dir: *build_dir
|
||||||
builddeps:
|
builddeps: *build_pygithub
|
||||||
- *pinned_go
|
|
||||||
- build-essential
|
|
||||||
- python3-dev
|
|
||||||
- libffi-dev
|
|
||||||
- python3-setuptools
|
|
||||||
- python3-pip
|
|
||||||
pre-cache: *install_pygithub
|
pre-cache: *install_pygithub
|
||||||
post-cache:
|
post-cache:
|
||||||
- make github-message
|
- make github-message
|
||||||
|
|
Loading…
Reference in New Issue