diff --git a/.github/workflows/release-cli.yaml b/.github/workflows/release-cli.yaml index 2ba60aa2..4151b616 100644 --- a/.github/workflows/release-cli.yaml +++ b/.github/workflows/release-cli.yaml @@ -57,7 +57,14 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y --no-install-recommends curl build-essential libssl-dev pkg-config + sudo apt-get install -y --no-install-recommends curl build-essential libssl-dev pkg-config software-properties-common + sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + sudo apt-get update + sudo apt-get install -y --no-install-recommends gcc-15 g++-15 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 100 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-15 100 + sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-15 100 + sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-15 100 - name: Install Rust Toolchain uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7