Add apt update in Linux CI (#2415)

* Update linux_ci.yml
This commit is contained in:
Sara Zan 2022-04-13 15:35:56 +02:00 committed by GitHub
parent d98883b79d
commit 1a81080e8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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