Skip to content

Commit

Permalink
Add apt update in Linux CI (#2415)
Browse files Browse the repository at this point in the history
* Update linux_ci.yml
  • Loading branch information
ZanSara authored Apr 13, 2022
1 parent d98883b commit 1a81080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ jobs:
run: wget --no-check-certificate https://dl.xpdfreader.com/xpdf-tools-linux-4.03.tar.gz && tar -xvf xpdf-tools-linux-4.03.tar.gz && sudo cp xpdf-tools-linux-4.03/bin64/pdftotext /usr/local/bin

- name: Install tesseract
run: sudo apt-get install tesseract-ocr libtesseract-dev poppler-utils
run: |
sudo apt update
sudo apt-get install tesseract-ocr libtesseract-dev poppler-utils
- name: Install Dependencies (on cache miss only)
# The cache might miss during the execution of an action: there should always be a fallback step to
Expand Down
2 changes: 1 addition & 1 deletion docs/_src/tutorials/tutorials/11.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ To find out more about these pipelines, have a look at our [documentation](https
With any Pipeline, whether prebuilt or custom constructed,
you can save a diagram showing how all the components are connected.

![image](https://user-images.githubusercontent.com/1563902/102451716-54813700-4039-11eb-881e-f3c01b47ca15.png)
![image](https://github.com/deepset-ai/haystack/blob/master/docs/img/retriever-reader-pipeline.png)


```python
Expand Down

0 comments on commit 1a81080

Please sign in to comment.