We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783ee5a commit 2640bd5Copy full SHA for 2640bd5
.github/workflows/ci.yml
@@ -30,7 +30,12 @@ jobs:
30
- name: Install dependencies
31
run: |
32
sudo apt-get update
33
- sudo apt-get install -y cmake libcurl4-openssl-dev gcc g++
+ sudo apt-get install -y software-properties-common
34
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
35
+ sudo apt-get update
36
+ sudo apt-get install -y cmake libcurl4-openssl-dev gcc-14 g++-14
37
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100
38
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100
39
40
- name: Configure CMake
41
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
0 commit comments