/
githubmirror
/
libseccomp
Обзор
Документация
Войти
/
githubmirror
/
libseccomp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/actions/setup/action.yml
40 строк
1 KB
Tom Hromatka
github: Remove dependency upon python3-distutils
18 янв 2025, 01:23
18 янв 2025, 01:23
21eb7cc
Код
Авторство
О чём код?
# # Github Action to setup the libseccomp directory # # Copyright (c) 2021 Oracle and/or its affiliates. # Author: Tom Hromatka <tom.hromatka@oracle.com> # # # This library is free software; you can redistribute it and/or modify it # under the terms of version 2.1 of the GNU Lesser General Public License as # published by the Free Software Foundation. # # This library is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License # for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this library; if not, see <http://www.gnu.org/licenses>. # name: Setup the libseccomp directory description: "Install dependencies and configure libseccomp" runs: using: "composite" steps: - run: sudo apt-get update shell: bash - run: sudo apt-get install -y build-essential valgrind clang-tools lcov gperf astyle codespell shell: bash - run: | sudo apt-get install -y python3 python3-setuptools python3-pip python3 -m pip install --upgrade pip python3 -m pip install cython # Add cython to the path echo "$HOME/.local/bin" >> $GITHUB_PATH shell: bash - run: | ./autogen.sh shell: bash