File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,10 @@ jobs:
22
22
23
23
steps :
24
24
- uses : actions/checkout@v3
25
-
26
- - name : Install Gurobi (if needed)
27
- if : matrix.gurobi == 'ON'
28
- run : |
29
- # Replace this with the actual installation instructions for your Gurobi version
30
- wget -O gurobi.sh https://packages.gurobi.com/11.0/gurobi11.0.0_linux64.tar.gz
31
- chmod +x gurobi.sh
32
- sudo ./gurobi.sh
33
- # You might need to accept the license agreement interactively or by modifying the script
34
- # Ensure Gurobi is in the PATH or set GUROBI_ROOT appropriately
35
-
36
25
- name : Install dependencies
37
26
run : |
38
27
sudo apt-get update
39
- sudo apt-get install -y --no-install-recommends ${{{{ matrix.torch == 'ON' && matrix.torch_gpu == 'ON' ? 'cuda' : '' }}}} # Install CUDA if needed
28
+ sudo apt-get install -y --no-install-recommends ${{ matrix.torch == 'ON' && matrix.torch_gpu == 'ON' ? 'cuda-toolkit ' : '' }} # Install CUDA Toolkit if needed
40
29
41
30
- name : Configure CMake
42
31
run : |
You can’t perform that action at this time.
0 commit comments