diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2025-10-16 14:51:33 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-10-16 15:45:27 +0200 |
| commit | 81a9671b4ceaefffe09e9e3de87a7be08e3efe29 (patch) | |
| tree | 9fbbb0376b445938ac2f4d9a8dcd4aa254aa2da2 | |
| parent | ca03cab3c4c3d01fbe738d5212820939a9a913a0 (diff) | |
| download | mullvadvpn-81a9671b4ceaefffe09e9e3de87a7be08e3efe29.tar.xz mullvadvpn-81a9671b4ceaefffe09e9e3de87a7be08e3efe29.zip | |
Remove buildserver-build check for windows-installer
We have had this crate for long enough to not support building before it
now
| -rwxr-xr-x | ci/buildserver-build.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/ci/buildserver-build.sh b/ci/buildserver-build.sh index 00e20a078c..8f9884d436 100755 --- a/ci/buildserver-build.sh +++ b/ci/buildserver-build.sh @@ -199,15 +199,8 @@ function build_ref { local build_args=(--optimize --sign) if [[ "$(uname -s)" == "Darwin" ]]; then build_args+=(--universal --notarize) - fi - if [[ "$(uname -s)" == "MINGW"* ]]; then - # Check if the windows-installer crate is present, and if so, build a universal installer. - # The check is needed for compatibility with older commits that don't have the crate/flag. - # It was added in December 2024. The condition can be removed when supporting commits - # older than that is no longer necessary. - if [[ -d "$BUILD_DIR/windows-installer" ]]; then - build_args+=(--universal) - fi + elif [[ "$(uname -s)" == "MINGW"* ]]; then + build_args+=(--universal) fi artifact_dir=$artifact_dir build "${build_args[@]}" || return 1 |
