pass in WINDOWS_BUILD_NAME to uploader to mark 64bit and 32bit builds distinctly

pull/1311/head
Jeff Becker 4 years ago
parent ad0b66ae02
commit d096f5375f
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -61,7 +61,7 @@ local windows_cross_pipeline(name, image,
lto=false,
werror=false,
cmake_extra='',
toolchain='mingw32',
toolchain='32',
extra_cmds=[],
allow_fail=false) = {
kind: 'pipeline',
@ -75,13 +75,13 @@ local windows_cross_pipeline(name, image,
name: 'build',
image: image,
[if allow_fail then "failure"]: "ignore",
environment: { SSH_KEY: { from_secret: "SSH_KEY" } },
environment: { SSH_KEY: { from_secret: "SSH_KEY" }, WINDOWS_BUILD_NAME: toolchain+"bit" },
commands: [
'apk add cmake git ninja pkgconf ccache patch make ' + deps,
'git clone https://github.com/despair86/libuv.git win32-setup/libuv',
'mkdir build',
'cd build',
'cmake .. -G Ninja -DCMAKE_CROSSCOMPILE=ON -DCMAKE_EXE_LINKER_FLAGS=-fstack-protector -DLIBUV_ROOT=$PWD/../win32-setup/libuv -DCMAKE_CXX_FLAGS=-fdiagnostics-color=always -DCMAKE_TOOLCHAIN_FILE=../contrib/cross/'+toolchain+'.cmake -DCMAKE_BUILD_TYPE='+build_type+' ' +
'cmake .. -G Ninja -DCMAKE_CROSSCOMPILE=ON -DCMAKE_EXE_LINKER_FLAGS=-fstack-protector -DLIBUV_ROOT=$PWD/../win32-setup/libuv -DCMAKE_CXX_FLAGS=-fdiagnostics-color=always -DCMAKE_TOOLCHAIN_FILE=../contrib/cross/mingw'+toolchain+'.cmake -DCMAKE_BUILD_TYPE='+build_type+' ' +
(if werror then '-DWARNINGS_AS_ERRORS=ON ' else '') +
(if lto then '' else '-DWITH_LTO=OFF ') +
"-DBUILD_STATIC_DEPS=ON -DDOWNLOAD_SODIUM=ON -DBUILD_PACKAGE=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=ON -DNATIVE_BUILD=OFF -DSTATIC_LINK=ON" +
@ -199,11 +199,11 @@ local mac_builder(name, build_type='Release', werror=true, cmake_extra='', extra
// Windows builds (WOW64 and native)
windows_cross_pipeline("win32 on alpine (amd64)", "alpine:edge",
toolchain='mingw64', extra_cmds=[
toolchain='64', extra_cmds=[
'../contrib/ci/drone-windows-upload.sh'
]),
windows_cross_pipeline("win32 on alpine (i386)", "i386/alpine:edge", arch='386',
toolchain='mingw32', extra_cmds=[
windows_cross_pipeline("win32 on alpine (i386)", "i386/alpine:edge",
toolchain='32', extra_cmds=[
'../contrib/ci/drone-windows-upload.sh'
]),

@ -21,11 +21,11 @@ chmod 600 ssh_key
if [ -n "$DRONE_TAG" ]; then
# For a tag build use something like `lokinet-linux-amd64-v1.2.3`
base="lokinet-windows-$DRONE_STAGE_ARCH-$DRONE_TAG"
base="lokinet-windows-$WINDOWS_BUILD_NAME-$DRONE_TAG"
else
# Otherwise build a length name from the datetime and commit hash, such as:
# lokinet-linux-amd64-20200522T212342Z-04d7dcc54
base="lokinet-windows-$DRONE_STAGE_ARCH-$(date --date=@$DRONE_BUILD_CREATED +%Y%m%dT%H%M%SZ)-${DRONE_COMMIT:0:9}"
base="lokinet-windows-$WINDOWS_BUILD_NAME-$(date --date=@$DRONE_BUILD_CREATED +%Y%m%dT%H%M%SZ)-${DRONE_COMMIT:0:9}"
fi
mkdir -v "$base"

Loading…
Cancel
Save