Skip to content

Commit

Permalink
Use a next-gen Docker convenience CircleCI image (#1635)
Browse files Browse the repository at this point in the history
* Use a next-gen Docker convenience CircleCI image
* Remove sudo from build doc commands
  • Loading branch information
bernardopericacho committed Apr 17, 2022
1 parent 8904e6a commit bba4db0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/python:3.8
- image: python:3.8
steps:
- checkout
- run:
Expand Down
6 changes: 3 additions & 3 deletions build_tools/circle/build_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ fi

# Installing required system packages to support the rendering of math
# notation in the HTML documentation
sudo -E apt-get -yq update
sudo -E apt-get -yq remove texlive-binaries --purge
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes \
apt-get -yq update
apt-get -yq remove texlive-binaries --purge
apt-get -yq --no-install-suggests --no-install-recommends --force-yes \
install dvipng texlive-latex-base texlive-latex-extra \
texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended\
latexmk
Expand Down

0 comments on commit bba4db0

Please sign in to comment.