mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
🔨 Install dependencies as sudo
This commit is contained in:
parent
58daf30b10
commit
f5be0f3e5c
2 changed files with 14 additions and 2 deletions
8
.github/workflows/build-sphinx-report.yml
vendored
8
.github/workflows/build-sphinx-report.yml
vendored
|
@ -60,7 +60,13 @@ jobs:
|
||||||
working-directory: backend/
|
working-directory: backend/
|
||||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||||
- name: "Install LaTeX dependencies"
|
- name: "Install LaTeX dependencies"
|
||||||
run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
run: >
|
||||||
|
sudo apt-get update -y &&
|
||||||
|
sudo apt-get install -y
|
||||||
|
latexmk
|
||||||
|
texlive-latex-recommended
|
||||||
|
texlive-latex-extra
|
||||||
|
texlive-fonts-recommended
|
||||||
- name: "Build LaTeX document with Sphinx"
|
- name: "Build LaTeX document with Sphinx"
|
||||||
working-directory: report/
|
working-directory: report/
|
||||||
run: |
|
run: |
|
||||||
|
|
8
.github/workflows/build-sphinx-thesis.yml
vendored
8
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -60,7 +60,13 @@ jobs:
|
||||||
working-directory: backend/
|
working-directory: backend/
|
||||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||||
- name: "Install LaTeX dependencies"
|
- name: "Install LaTeX dependencies"
|
||||||
run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
run: >
|
||||||
|
sudo apt-get update -y &&
|
||||||
|
sudo apt-get install -y
|
||||||
|
latexmk
|
||||||
|
texlive-latex-recommended
|
||||||
|
texlive-latex-extra
|
||||||
|
texlive-fonts-recommended
|
||||||
- name: "Build LaTeX document with Sphinx"
|
- name: "Build LaTeX document with Sphinx"
|
||||||
working-directory: thesis/
|
working-directory: thesis/
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue