Installing python causes issues when this script is being run on the newest version of Ubuntu, which ships with python 3. Removing the explicit python installation in the script resolves the issue.
This commit is contained in:
Jose Sanchez 2023-01-17 16:21:53 -08:00 коммит произвёл GitHub
Родитель dbeb521e12
Коммит 2c9f037f68
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

2
.github/scripts/build_doxygen.sh поставляемый
Просмотреть файл

@ -8,7 +8,7 @@ set -o nounset # Exit if variable not set.
set -o pipefail # Exit if pipe failed.
sudo apt update
sudo apt install -y git cmake python flex bison
sudo apt install -y git cmake flex bison
pushd ~
git clone -b Release_1_9_0 https://github.com/doxygen/doxygen.git