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 2d11fd0 commit fe0e316Copy full SHA for fe0e316
scripts/ci_install_dependencies.sh
@@ -23,4 +23,10 @@ echo "Installing PyGObject dependencies via apt..."
23
sudo apt install -y libglib2.0-dev libcairo2-dev libgirepository1.0-dev \
24
gir1.2-gtk-3.0 python3-gi-cairo
25
26
+# Install and switch to GCC 13
27
+sudo apt-get install -y --no-install-recommends gcc-13 g++-13 lcov
28
+sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
29
+sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
30
+sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-13 100
31
+
32
echo "All dependencies installed successfully via apt."
0 commit comments