Skip to content

Commit 9dc190d

Browse files
committed
Use correct LLVM repo
1 parent f42517c commit 9dc190d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-and-test-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@ jobs:
110110
111111
include("../common.jl")
112112
113-
src_name, src_version, sources, script, platforms, products, dependencies = configure_build([], version; update_sdk=false, assert=true, experimental_platforms=true, git_path=git_path=git_path="https://github.com/Zentrik/llvm-project.git", git_ver=ENV["LLVM_VERSION"])
113+
src_name, src_version, sources, script, platforms, products, dependencies = configure_build([], version; update_sdk=false, assert=true, experimental_platforms=true, git_path=git_path=git_path="https://github.com/JuliaLang/llvm-project.git", git_ver=ENV["LLVM_VERSION"])
114114
products = Product[]
115115
build_tarballs(["--verbose", "${{ inputs.target }}", "--skip-audit"], src_name, src_version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"10", preferred_llvm_version=v"16", julia_compat="1.6")
116116
'
117117
- name: Work out which julia patches to apply
118118
id: julia_patches
119119
run: |
120120
set -o xtrace
121-
cd binarybuilder_storage/downloads/clones/llvm-project.git-a9a027c82b862657a45411258ff2bcaac49f6f6006da577b63d4b63427993629 # https://github.com/JuliaPackaging/BinaryBuilderBase.jl/blob/b77c32e367f6db32517967d2b3c41f2c9850806b/src/Sources.jl#L209
121+
cd binarybuilder_storage/downloads/clones/llvm-project.git-5a9787eb535c2edc5dea030cc221c1d60f38c9f42344f410e425ea2139e233aa # https://github.com/JuliaPackaging/BinaryBuilderBase.jl/blob/b77c32e367f6db32517967d2b3c41f2c9850806b/src/Sources.jl#L209
122122
123123
JULIA_PATCHES_TO_APPLY=()
124124
for patch in $GITHUB_WORKSPACE/julia-patches/*; do

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
run: |
3535
set -o xtrace
3636
if [ -z "$LLVM_VERSION" ]; then
37-
LLVM_VERSION=$(git ls-remote https://github.com/Zentrik/llvm-project.git | grep 'refs/heads/llvm-20$' | awk '{print $1}')
37+
LLVM_VERSION=$(git ls-remote https://github.com/JuliaLang/llvm-project.git | grep 'refs/heads/julia-release/20.x$' | awk '{print $1}')
3838
fi
39-
LLVM_VERSION_MAJOR=$(curl -s https://raw.githubusercontent.com/Zentrik/llvm-project/$LLVM_VERSION/cmake/Modules/LLVMVersion.cmake | grep -oP 'set\(LLVM_VERSION_MAJOR \K[0-9]+')
39+
LLVM_VERSION_MAJOR=$(curl -s https://raw.githubusercontent.com/JuliaLang/llvm-project/$LLVM_VERSION/cmake/Modules/LLVMVersion.cmake | grep -oP 'set\(LLVM_VERSION_MAJOR \K[0-9]+')
4040
echo "LLVM_VERSION=$LLVM_VERSION" >> "$GITHUB_OUTPUT"
4141
echo "LLVM_VERSION_MAJOR=$LLVM_VERSION_MAJOR" >> "$GITHUB_OUTPUT"
4242
build:

0 commit comments

Comments
 (0)