Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.circleci/ use image: default #516

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ references:
run:
name: Setup TeX
command: |-
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -qq -y texlive-latex-base texlive-binaries texlive-lang-japanese latex2html nkf poppler-utils
setup-eus: &setup-eus
run:
name: Setup EusLisp
command: |-
export DEBIAN_FRONTEND=noninteractive
sudo apt-get install -qq -y git make gcc g++ libjpeg-dev libxext-dev libx11-dev libgl1-mesa-dev libglu1-mesa-dev libpq-dev libpng-dev xfonts-100dpi xfonts-75dpi
echo 'export EUSDIR=`pwd`' >> $BASH_ENV
echo 'export ARCHDIR=Linux64' >> $BASH_ENV
Expand All @@ -25,7 +27,7 @@ references:
jobs:
html:
machine:
image: ubuntu-2004:2022.07.1
image: default
steps:
- checkout
- *setup-tex
Expand Down Expand Up @@ -55,7 +57,7 @@ jobs:

latex:
machine:
image: ubuntu-2004:2022.07.1
image: default
steps:
- checkout
- *setup-tex
Expand All @@ -76,7 +78,7 @@ jobs:
paths: manual.pdf
jlatex:
machine:
image: ubuntu-2004:2022.07.1
image: default
steps:
- checkout
- *setup-tex
Expand All @@ -97,13 +99,15 @@ jobs:
paths: jmanual.pdf
rst:
machine:
image: ubuntu-2004:2022.07.1
image: default
steps:
- checkout
- *setup-tex
- run:
name: Install Pandoc
command: sudo apt-get install -y -qq pandoc
command: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get install -y -qq pandoc
- run:
name: Compile reStructuredText(reST)
command: cd doc/latex && make rst
Expand Down
Loading