From a3ed103a3453adabf1f6a451a1207865b2c2a65e Mon Sep 17 00:00:00 2001 From: Irene Bandera Date: Thu, 30 Nov 2023 11:17:07 +0100 Subject: [PATCH] Remove unnecesary actions Signed-off-by: Irene Bandera --- .../actions/install-apt-packages/action.yml | 25 ------------------- .../install-python-packages/action.yml | 23 ----------------- 2 files changed, 48 deletions(-) delete mode 100644 .github/actions/install-apt-packages/action.yml delete mode 100644 .github/actions/install-python-packages/action.yml diff --git a/.github/actions/install-apt-packages/action.yml b/.github/actions/install-apt-packages/action.yml deleted file mode 100644 index 9c5c3fe5a..000000000 --- a/.github/actions/install-apt-packages/action.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: 'install-apt-packages' -description: 'Install necessary apt packages' -runs: - using: "composite" - steps: - - id: install-apt-packages - run: | - sudo apt update && sudo apt -y install \ - clang-tidy \ - curl \ - doxygen \ - graphviz \ - grep \ - imagemagick \ - libasio-dev \ - libtinyxml2-dev \ - libyaml-cpp-dev \ - lcov \ - python3 \ - python3-pip \ - python3-sphinxcontrib.spelling \ - python3-venv \ - software-properties-common \ - wget - shell: bash diff --git a/.github/actions/install-python-packages/action.yml b/.github/actions/install-python-packages/action.yml deleted file mode 100644 index 7d4809b28..000000000 --- a/.github/actions/install-python-packages/action.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: 'install-python-packages' -description: 'Install necessary python packages' -runs: - using: "composite" - steps: - - id: install-python-packages - run: | - sudo pip3 install -U \ - sphinx==4.3.1 \ - doc8==0.10.1 \ - sphinx_rtd_theme==0.5.2 \ - sphinxcontrib.spelling==7.2.1 \ - sphinxcontrib-imagehelper==1.1.1 \ - sphinx-tabs==3.2.0 \ - colcon-common-extensions \ - colcon-mixin \ - vcstool \ - GitPython==3.1.24 \ - setuptools==58.2.0 \ - gcovr==5.0 \ - pyyaml \ - jsonschema - shell: bash