Skip to content

Commit

Permalink
Provide better CI/CD error output
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefGokhlayeh committed Jan 14, 2021
1 parent dd3180a commit a53bf0a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/self-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
push: false
tags: ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing
- name: Compile EPS test document
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/eps ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf main.tex
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/eps ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf -interaction=nonstopmode -file-line-error main.tex
- name: Compile FontAwesome5 test document
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/fontawesome5 ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf main.tex
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/fontawesome5 ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf -interaction=nonstopmode -file-line-error main.tex
- name: Compile PlantUML test document
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/plantuml ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=. -lualatex main.tex
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/plantuml ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=. -lualatex -interaction=nonstopmode -file-line-error main.tex
- name: Compile PythonTeX test document
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/pythontex ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf main.tex
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/pythontex ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf -interaction=nonstopmode -file-line-error main.tex
- name: Compile SVG test document
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/svg ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf main.tex
run: docker run -v "$(pwd):/github/workspace" -w /github/workspace/test/svg ${{ secrets.DOCKERHUB_USERNAME }}/latex:testing latexmk -outdir=build -pdf -interaction=nonstopmode -file-line-error main.tex

0 comments on commit a53bf0a

Please sign in to comment.