We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4069fad commit 0da2b01Copy full SHA for 0da2b01
.github/workflows/github-ci.yml
@@ -79,8 +79,11 @@ jobs:
79
run: |
80
sudo apt-get update
81
sudo apt-get install libunwind-dev
82
- # Detect the Ubuntu version codename
+ # Detect the Ubuntu distribution codename
83
DIST_CODENAME=$(lsb_release -cs)
84
+ if [[ "$DIST_CODENAME" = "noble" && "$version" -le 12 ]]; then
85
+ DIST_CODENAME="jammy"
86
+ fi
87
sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
88
version=${{ matrix.version }}
89
sudo add-apt-repository "deb http://apt.llvm.org/$DIST_CODENAME/ llvm-toolchain-$DIST_CODENAME-$version main"
0 commit comments