Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
BINARYBUILDER_CCACHE_DIR: ${{ github.workspace }}/binarybuilder_ccache
LLVM_VERSION: ${{ inputs.LLVM_VERSION }}
LLVM_VERSION_MAJOR: ${{ inputs.LLVM_VERSION_MAJOR }}
JULIA_REGISTRYCI_AUTOMERGE: true
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I always wondered if anyone would notice this trick for using BB in other Julia versions 😂

steps:
- uses: actions/checkout@v4
- name: Maximize build disk space (Only remove unwanted software)
Expand All @@ -55,7 +56,7 @@ jobs:
verbose: false
- uses: julia-actions/setup-julia@v2
with:
version: '1.7'
version: '~1.12.0-0'
arch: x64
- name: Cache BinaryBuilder Storage Directory
if: inputs.save_cache
Expand Down Expand Up @@ -97,7 +98,6 @@ jobs:
fi

cd L/LLVM/LLVM_full@20
rm -rf bundled/libcxx_patches
Copy link
Owner Author

@Zentrik Zentrik Apr 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Somewhat confused how musl is building currently

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might just be applying a patch to the headers that the resultant libcxx will ship, so wouldn't cause a build failure (given we don't try building julia with musl).

if [ "$(ls -A $GITHUB_WORKSPACE/llvm-patches)" ]; then
cp $GITHUB_WORKSPACE/llvm-patches/* bundled/patches/
fi
Expand Down
Loading
Loading