Skip to content

Commit

Permalink
Update azure release script
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeuw committed Nov 29, 2020
1 parent f19666a commit f1c6567
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 31 deletions.
26 changes: 3 additions & 23 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,8 @@ steps:
displayName: 'Set up the Go workspace'

- script: |
go get github.com/mitchellh/gox
v="$(git describe --tags)"
output="{{.Dir}}-{{.OS}}-{{.Arch}}-$v"
osarch="!darwin/arm !darwin/arm64 !darwin/386"
echo "Compiling:"
os="windows linux darwin"
arch="amd64 386 arm arm64 mips mips64 mipsle mips64le"
pushd cmd/ck-client || exit 1
gox -ldflags "-X main.version=${v}" -os="$os" -arch="$arch" -osarch="$osarch" -output="$output"
GOOS="linux" GOARCH="mips" GOMIPS="softfloat" go build -ldflags "-X main.version=${v}" -o ck-client-linux-mips_softfloat-"${v}"
GOOS="linux" GOARCH="mipsle" GOMIPS="softfloat" go build -ldflags "-X main.version=${v}" -o ck-client-linux-mipsle_softfloat-"${v}"
mv ck-client-* $(Build.ArtifactStagingDirectory)/
os="linux"
arch="amd64 386 arm arm64"
pushd ../ck-server || exit 1
gox -ldflags "-X main.version=${v}" -os="$os" -arch="$arch" -osarch="$osarch" -output="$output"
mv ck-server-* $(Build.ArtifactStagingDirectory)/
v="$(git describe --tags)" ./release.sh
mv ./release/* $(Build.ArtifactStagingDirectory)/
workingDirectory: '$(modulePath)'
displayName: 'Get dependencies, then build'

Expand All @@ -81,4 +61,4 @@ steps:
#isPreRelease: false # Optional
addChangeLog: false # Optional
#compareWith: 'lastFullRelease' # Required when addChangeLog == True. Options: lastFullRelease, lastRelease, lastReleaseByTag
#releaseTag: # Required when compareWith == LastReleaseByTag
#releaseTag: # Required when compareWith == LastReleaseByTag
9 changes: 1 addition & 8 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,7 @@ go get github.com/mitchellh/gox

mkdir -p release

read -rp "Cleaning $PWD/release directory. Proceed? [y/n]" res
if [ ! "$res" == "y" ]; then
echo "Abort"
exit 1
fi

rm -rf ./release/*

rm -f ./release/*

if [ -z "$v" ]; then
echo "Version number cannot be null. Run with v=[version] release.sh"
Expand Down

0 comments on commit f1c6567

Please sign in to comment.