From 1b7385583e2e07687fbe201d266a90fcb0234c69 Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Wed, 11 Dec 2024 08:50:26 +0900 Subject: [PATCH 1/2] .circleci/ use image: default --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e9870003..fdfbbe402 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ references: jobs: html: machine: - image: ubuntu-2004:2022.07.1 + image: default steps: - checkout - *setup-tex @@ -55,7 +55,7 @@ jobs: latex: machine: - image: ubuntu-2004:2022.07.1 + image: default steps: - checkout - *setup-tex @@ -76,7 +76,7 @@ jobs: paths: manual.pdf jlatex: machine: - image: ubuntu-2004:2022.07.1 + image: default steps: - checkout - *setup-tex @@ -97,7 +97,7 @@ jobs: paths: jmanual.pdf rst: machine: - image: ubuntu-2004:2022.07.1 + image: default steps: - checkout - *setup-tex From 0fd2dc98b29a8d4937889318d06c334f16587bc5 Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Wed, 11 Dec 2024 10:07:08 +0900 Subject: [PATCH 2/2] .circleci/ add DEBIAN_FRONTEND=noninteractive --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fdfbbe402..477f45432 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -103,7 +105,9 @@ jobs: - *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