Skip to content

Commit e79bcd2

Browse files
Update ci.yaml
1 parent ecd9920 commit e79bcd2

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,10 @@ jobs:
2222

2323
steps:
2424
- 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-
3625
- name: Install dependencies
3726
run: |
3827
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
4029
4130
- name: Configure CMake
4231
run: |

0 commit comments

Comments
 (0)