mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
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 <cb@256bit.org> Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com>
This commit is contained in:
parent
d5475e8d8d
commit
d2af6c66fe
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
@ -180,23 +180,20 @@ jobs:
|
|||||||
sudo usermod -a -G audio "${USER}"
|
sudo usermod -a -G audio "${USER}"
|
||||||
sudo bash ci/setup-xvfb.sh
|
sudo bash ci/setup-xvfb.sh
|
||||||
|
|
||||||
- name: Check if linux-modules-extra is available
|
|
||||||
id: check-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
|
- name: Set up snd-dummy
|
||||||
if: steps.check-snd-dummy.outcome == 'success' && (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags')))
|
if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags')))
|
||||||
env:
|
env:
|
||||||
DEST_DIR: ${{ env.TMPDIR }}/linux-modules-extra-${{ env.LINUX_VERSION }}
|
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: |
|
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 depmod --verbose
|
||||||
sudo modprobe --verbose snd-dummy
|
sudo modprobe --verbose snd-dummy
|
||||||
|
|
||||||
- name: Check autoconf
|
- name: Check autoconf
|
||||||
if: contains(matrix.extra, 'unittests')
|
if: contains(matrix.extra, 'unittests')
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1733,
|
||||||
/**/
|
/**/
|
||||||
1732,
|
1732,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user