From da6345d17ac5797bebfb4eccaf8bbc31301c442e Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Fri, 12 Jul 2024 10:58:32 -0500 Subject: [PATCH] ci: Replace package installation with local action Separate the package installation step with a local action so it's easier to support more versions and distros. Signed-off-by: Lucas De Marchi Reviewed-by: Reviewed-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/44 --- .github/actions/setup-ubuntu/action.yml | 22 ++++++++++++++++++++++ .github/workflows/main.yml | 18 +----------------- 2 files changed, 23 insertions(+), 17 deletions(-) create mode 100644 .github/actions/setup-ubuntu/action.yml diff --git a/.github/actions/setup-ubuntu/action.yml b/.github/actions/setup-ubuntu/action.yml new file mode 100644 index 0000000..554d261 --- /dev/null +++ b/.github/actions/setup-ubuntu/action.yml @@ -0,0 +1,22 @@ +name: 'setup Ubuntu' +description: 'Setup an Ubuntu container for running CI' +runs: + using: 'composite' + steps: + - name: Install dependencies + shell: bash + run: | + sudo apt-get update + sudo apt-get install --yes \ + build-essential \ + autoconf \ + automake \ + gtk-doc-tools \ + libssl-dev \ + liblzma-dev \ + libssl-dev \ + libtool \ + libzstd-dev \ + linux-headers-generic \ + scdoc \ + zstd diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 79eff14..fa9c9b9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,23 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - - name: install dependencies - run: | - sudo apt-get update - sudo apt-get install --yes \ - build-essential \ - autoconf \ - automake \ - gtk-doc-tools \ - libssl-dev \ - liblzma-dev \ - libssl-dev \ - libtool \ - libzstd-dev \ - linux-headers-generic \ - scdoc \ - zstd \ + - uses: ./.github/actions/setup-ubuntu - name: configure run: |