Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't multiversion on 32bit #308

Merged
merged 3 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified pipelines/main/launch_signed_jobs.yml.signature
Binary file not shown.
3 changes: 2 additions & 1 deletion pipelines/main/launch_upload_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Salted__NV�Θ����[��B��^w�T���X��8Ţ<�[�{f�M0J�O9��J��KtǓ��X���{�bX�<P��v�Kx�b���p
Salted__��'��#4�AT;�B�j���� �f@��<v^f>h�Q1Uп&$+
�K�-U�X6������l$�@3�?�7>Q0��y�R 褌��
Binary file modified pipelines/scheduled/coverage/coverage.yml.signature
Binary file not shown.
2 changes: 1 addition & 1 deletion pipelines/scheduled/launch_signed_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Salted__��}��v�o��hy9���'�WhB��IxO���e�hWT1�AĠ�p i���)�J��'�bW� �(��S�h������jfE�8�B���
Salted__��hP"�-�"Ј������0�盨*�N��:�v_�rP(���ݩ/-�Ux�}3���G%c=ouf�-���7B�I~z �����F�Wg�V��F/
4 changes: 3 additions & 1 deletion pipelines/scheduled/launch_upload_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Salted__+i3�,:'����o�vS� �$ ;t����Y���-�Y�i�+�A�pVtf�0���T���p8E^ �z1����;i���e�Lj]��h�
Salted__�D�I��P4��b����������rѝ����<�i{
5uNn�鍜'����Q��������_q�
-��%~~�g��
7 changes: 5 additions & 2 deletions utilities/build_envs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ case "${ARCH?}" in
i686)
JULIA_CPU_TARGETS+=(
# We require SSE2, etc.. so `pentium4` is our base i686 feature set
# We used to also target `sandybridge`, but sadly we run out of memory
# when linking so much code, so we're temporarily restricting to only
# the base set for now. :(
# Please, if you are using Julia for performance-critical work, use
# a 64-bit processor!
"pentium4"
# Add sandybridge level similar to x86_64 above
"sandybridge,-xsaveopt,clone_all"
)
;;
armv7l)
Expand Down