Skip to content

Commit

Permalink
[windows] Upload .zip files
Browse files Browse the repository at this point in the history
We need to serve not only `.tar.gz` files, but `.zip` files as well, as
many windows users do not have an easy way to extract tarballs.
  • Loading branch information
staticfloat committed Nov 15, 2022
1 parent 4ee7ec6 commit 1134c2c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
Binary file modified pipelines/main/launch_signed_jobs.yml.signature
Binary file not shown.
Binary file modified pipelines/main/launch_upload_jobs.yml.signature
Binary file not shown.
2 changes: 1 addition & 1 deletion pipelines/scheduled/coverage/coverage.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Salted__�������Ƌ�[鸖�m�����YX�l���G1N��+��rrPґ���rɠVK�3��� ���8?��=·���i2'���o�Cߡ
Salted__�(ȓ�u��fC@K(*׏�(�4�C����0�����m'L�SX����M�g~��.�E˫wa�C�y7,wf�~���n��p4.�z�p�
3 changes: 1 addition & 2 deletions pipelines/scheduled/launch_signed_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
Salted__���_f0"BU$�1��p{ga�l8�
Zm�a[��e�[���수}�]�)u�4?����� ���;W�����@M�Y�p�Z�����L�
Salted__� � �^$�����<�wR�&]@�Q�K�N���hAxu��ҝ)��������Q�|�:m�����;�����)r�0<�b
2 changes: 1 addition & 1 deletion pipelines/scheduled/launch_upload_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Salted__�(�,��z�p�~��*��|w��'��<����g�K���!����Tk����L��t��lަF�Q��A+q�K\|�LNB.�/���
Salted__�΃�v c��)]8���7���) f� UC��T�����R��K2�f �F�\Et��F���I,!r��.%|�{h533ޗ�~bُ
5 changes: 5 additions & 0 deletions utilities/upload_julia.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ elif [[ "${OS}" == "windows" || "${OS}" == "windowsnogpl" ]]; then

# Add the `.exe` to our upload targets
UPLOAD_EXTENSIONS+=( "exe" )

# Use powershell to create a `.zip` file to upload as well
echo "--- [windows] make zip"
powershell Compress-Archive "$(cygpath -w "$(pwd)/${JULIA_INSTALL_DIR}")" "${UPLOAD_FILENAME}.zip"
UPLOAD_EXTENSIONS+=( "zip" )
fi

echo "--- GPG-sign the tarball"
Expand Down

0 comments on commit 1134c2c

Please sign in to comment.