File tree 4 files changed +11
-11
lines changed 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ RUN wget https://apt.llvm.org/llvm.sh && \
26
26
./llvm.sh 16
27
27
28
28
# Update alternatives to use clang-16 by default
29
- RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100 && \
30
- update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-16 100 && \
31
- update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
29
+ RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 10000 && \
30
+ update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-16 10000 && \
31
+ update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 10000
32
32
33
33
# Update alternatives to use gcc-13 by default
34
- RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 && \
35
- update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
34
+ RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 10000 && \
35
+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 10000
36
36
37
37
# Install libiconv
38
38
ENV LIBICONV_VERSION=1.15
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ runs:
18
18
wget https://apt.llvm.org/llvm.sh
19
19
chmod u+x llvm.sh
20
20
sudo ./llvm.sh 16
21
- sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100
22
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
21
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 10000
22
+ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 10000
23
23
24
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
25
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
24
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 10000
25
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 10000
26
26
27
27
wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.15.tar.gz
28
28
tar -xvzf libiconv-1.15.tar.gz
Original file line number Diff line number Diff line change 46
46
uses : actions/cache/restore@v4
47
47
with :
48
48
path : ~/.ccache
49
- key : ubuntu-22.04-ccache-${{ matrix.compiler }}-${{steps.ccache_cache_timestamp.outputs.timestamp }}
49
+ key : ubuntu-22.04-ccache-${{ matrix.compiler }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
50
50
restore-keys : |
51
51
ubuntu-22.04-ccache-${{ matrix.compiler }}-
52
52
- name : Build
Original file line number Diff line number Diff line change 30
30
uses : actions/cache@v4
31
31
with :
32
32
path : ~/.ccache
33
- key : ubuntu-22.04-ccache-${{ matrix.compiler }}-${{steps.ccache_cache_timestamp.outputs.timestamp }}
33
+ key : ubuntu-22.04-ccache-${{ matrix.compiler }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
34
34
restore-keys : |
35
35
ubuntu-22.04-ccache-${{ matrix.compiler }}-
36
36
- name : Build
You can’t perform that action at this time.
0 commit comments