File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 10
10
if ! which $CC > /dev/null 2>&1 ; then
11
11
case $DISTRO in
12
12
" ubuntu-22.04" ) distro_name=jammy;;
13
- " ubuntu-20 .04" ) distro_name=focal ;;
13
+ " ubuntu-24 .04" ) distro_name=noble ;;
14
14
* )
15
15
echo " Unknown distribution $DISTRO "
16
16
exit 1
17
17
esac
18
18
case $1 in
19
- " 14 " | " 15" ) llvm_version=$1 ;;
19
+ " 18 " | " 15" ) llvm_version=$1 ;;
20
20
* )
21
21
echo " Unknown llvm version $1 "
22
22
exit 1
Original file line number Diff line number Diff line change 12
12
test :
13
13
strategy :
14
14
matrix :
15
- compiler : [clang-15 , gcc]
16
- os : [ubuntu-22 .04, ubuntu-20 .04]
15
+ compiler : [clang, gcc]
16
+ os : [ubuntu-24 .04, ubuntu-22 .04]
17
17
build : [meson, autotools]
18
18
runs-on : ${{ matrix.os }}
19
19
env :
23
23
- name : ' Checkout'
24
24
uses : actions/checkout@v4
25
25
- name : ' Install toolchain'
26
- if : ${{ (matrix.compiler == 'clang-15 ') }}
26
+ if : ${{ (matrix.compiler == 'clang') && (matrix.os == 'ubuntu-22.04 ') }}
27
27
run : .github/workflows/install-clang.sh 15
28
+ - name : ' Install toolchain'
29
+ if : ${{ (matrix.compiler == 'clang') && (matrix.os == 'ubuntu-24.04') }}
30
+ run : .github/workflows/install-clang.sh 18
28
31
- name : ' Install prerequisites'
29
32
run : |
30
33
sudo apt-get update
You can’t perform that action at this time.
0 commit comments