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 599ca77 commit 3147e57Copy full SHA for 3147e57
.github/workflows/build.yml
@@ -93,11 +93,16 @@ jobs:
93
94
- name: Dependencies
95
id: depends
96
- run: |
+ run: |
97
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb
98
sudo dpkg -i cuda-keyring_1.1-1_all.deb
99
sudo apt-get update
100
sudo apt-get install build-essential libcurl4-openssl-dev ccache cuda-toolkit-12-6
101
+ sudo apt install software-properties-common
102
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
103
+ sudo apt update
104
+ sudo apt install gcc-13 g++-13
105
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 --slave /usr/bin/g++ g++ /usr/bin/g++-13
106
107
- name: Build
108
id: cmake_build
0 commit comments