# HG changeset patch # User Christian Brabandt # Date 1692309603 -7200 # Node ID bb24afd68742f4b86f2801dd75de025748e7e337 # Parent f08bd477de707384e3c04a34a7d1d9dcfbdac7f8 patch 9.0.1733: CI: cannot cache linux-modules-extra Commit: https://github.com/vim/vim/commit/d2af6c66fe9b6bbb58d6ffdf8b3aa6e57d993b1f Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu Aug 17 23:45:08 2023 +0200 patch 9.0.1733: CI: cannot cache linux-modules-extra Problem: CI: cannot cache linux-modules-extra Solution: Enable caching and reduce failed downloads closes: #12779 Signed-off-by: Christian Brabandt Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com> diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -180,23 +180,20 @@ jobs: sudo usermod -a -G audio "${USER}" sudo bash ci/setup-xvfb.sh - - name: Check if linux-modules-extra is available - id: check-snd-dummy + - name: Set up snd-dummy if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags'))) - continue-on-error: true - run: | - sudo apt-get install -d -y linux-modules-extra-${{ env.LINUX_VERSION }} - - - name: Set up snd-dummy - if: steps.check-snd-dummy.outcome == 'success' && (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags'))) env: DEST_DIR: ${{ env.TMPDIR }}/linux-modules-extra-${{ env.LINUX_VERSION }} + uses: tecolicom/actions-use-apt-tools@main + with: + tools: linux-modules-extra-${{ env.LINUX_VERSION }} + path: "${DEST_DIR}" + + - name: modprobe snd-dummy + if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags'))) run: | - cd /lib/modules/${{ env.LINUX_VERSION }} - sudo dpkg -x /var/cache/apt/archives/linux-modules-extra-${{ env.LINUX_VERSION }}*.deb "${DEST_DIR}" - tar -cvC "${DEST_DIR}"/lib/modules/${{ env.LINUX_VERSION }} kernel/sound | sudo tar -x sudo depmod --verbose - sudo modprobe --verbose snd-dummy + sudo modprobe --verbose snd-dummy - name: Check autoconf if: contains(matrix.extra, 'unittests') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1733, +/**/ 1732, /**/ 1731,