Skip to content

Commit

Permalink
fix: Do not use custom repo gcc 13 for Ubuntu because it doesn't run …
Browse files Browse the repository at this point in the history
…on vanilla Ubuntu (#1730)
  • Loading branch information
iTrooz authored Jun 3, 2024
1 parent 984438e commit 2c00aa5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,6 @@ jobs:
apt update
bash dist/get_deps_debian.sh
apt install software-properties-common -y
add-apt-repository ppa:ubuntu-toolchain-r/test -y
apt update
apt install -y gcc-13 g++-13
- name: ⬇️ Install .NET
uses: actions/setup-dotnet@v4
with:
Expand All @@ -402,7 +397,7 @@ jobs:
git config --global --add safe.directory '*'
mkdir -p build
cd build
CC=gcc-13 CXX=g++-13 cmake -G "Ninja" \
CC=gcc-12 CXX=g++-12 cmake -G "Ninja" \
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
Expand Down

0 comments on commit 2c00aa5

Please sign in to comment.