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 fb59259 commit 84b1746Copy full SHA for 84b1746
.github/workflows/ci.yml
@@ -57,6 +57,17 @@ jobs:
57
cd ${{ github.workspace }}/vcpkg
58
./bootstrap-vcpkg.sh
59
60
+ - name: Setup GCC 14 (Linux)
61
+ if: runner.os == 'Linux'
62
+ run: |
63
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
64
+ sudo apt-get update
65
+ sudo apt-get install -y gcc-14 g++-14
66
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100
67
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100
68
+ gcc --version
69
+ g++ --version
70
+
71
- name: Install vcpkg dependencies
72
env:
73
VCPKG_DEFAULT_TRIPLET: ${{ matrix.triplet }}
0 commit comments