Skip to content

Commit f36c946

Browse files
authored
Run apt-get update in CI before installing graphviz (#150)
Recently, our CI started failing from `main`, due to an inability to install `graphviz`. This seems to be due to a stale apt cache. This PR fixes this by having CI do `apt-get update` before trying to install `graphviz`.
1 parent 2007654 commit f36c946

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
environment-file: environment_full.yml
6666
- name: Install syntheseus with all single-step models
6767
run: |
68+
sudo apt-get update
6869
sudo apt install -y graphviz
6970
pip install .[all]
7071
- name: Verify GPU is available

0 commit comments

Comments
 (0)