File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
set -ex
4
4
5
+ source versions.sh
5
6
source shared.sh
6
7
7
- # Try to keep the LLVM version here in sync with src/ci/scripts/install-clang.sh
8
- LLVM=llvmorg-20.1.0-rc2
8
+ # Should be in sync with src/ci/scripts/install-clang.sh
9
+ LLVM=llvmorg-$LLVM_VERSION
9
10
10
11
mkdir llvm-project
11
12
cd llvm-project
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ # ignore-tidy-linelength
3
+
4
+ # To keep docker / non-docker builds in sync
5
+
6
+ # renovate: datasource=github-releases depName=llvm/llvm-project versioning=semver-coerced extractVersion=^llvmorg-(?<version>\d+\.\d+\.\d+(?:.*))
7
+ export LLVM_VERSION=20.1.3
Original file line number Diff line number Diff line change 7
7
set -euo pipefail
8
8
IFS=$' \n\t '
9
9
10
+ # LLVM_VERSION should be in sync with src/ci/docker/scripts/build-clang.sh
11
+ source " $( cd " $( dirname " $0 " ) " && pwd) /../docker/scripts/versions.sh"
10
12
source " $( cd " $( dirname " $0 " ) " && pwd) /../shared.sh"
11
13
12
14
# Update both macOS's and Windows's tarballs when bumping the version here.
13
- # Try to keep this in sync with src/ci/docker/scripts/build-clang.sh
14
- LLVM_VERSION=" 20.1.3"
15
-
16
15
if isMacOS; then
17
16
# FIXME: This is the latest pre-built version of LLVM that's available for
18
17
# x86_64 MacOS. We may want to consider building our own LLVM binaries
You can’t perform that action at this time.
0 commit comments