File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 11
11
- cc : gcc-14
12
12
clang_major_version : null
13
13
runs-on : ubuntu-24.04
14
+ - cc : gcc-15
15
+ clang_major_version : null
16
+ runs-on : ubuntu-24.04
14
17
- cc : clang-19
15
18
clang_major_version : 19
16
19
runs-on : ubuntu-22.04
22
25
23
26
steps :
24
27
- uses : actions/checkout@v4
28
+ - name : gcc_15_repo
29
+ if : " ${{ matrix.cc == 'gcc-15' }}"
30
+ run : |
31
+ set -x
32
+ # The repository is at home at https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test .
33
+ # NOTE: plucky is 25.04 (not 24.04 LTS)
34
+ wget -O - 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xc8ec952e2a0e1fbdc5090f6a2c277a0a352154e5' | sudo apt-key add -
35
+ sudo add-apt-repository 'deb https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu plucky main'
36
+ sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ plucky main'
37
+ - name : gcc_15_install
38
+ if : " ${{ matrix.cc == 'gcc-15' }}"
39
+ run : |
40
+ set -x
41
+ sudo apt-get install --yes --no-install-recommends -V \
42
+ binutils \
43
+ gcc-15
44
+ apt-cache policy binutils
25
45
- name : clang_repo
26
46
if : " ${{ contains(matrix.cc, 'clang') }}"
27
47
run : |
You can’t perform that action at this time.
0 commit comments