# HG changeset patch # User Bram Moolenaar # Date 1669303804 -3600 # Node ID 60603cf3214c6be093e984f93a4f013a778b79c8 # Parent a4547feee66f7ec32708e788de88c3448aa560e3 patch 9.0.0941: CI failures in sound dummy Commit: https://github.com/vim/vim/commit/1273dfb015cf8f710023427658c147fa616bfe48 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu Nov 24 15:15:08 2022 +0000 patch 9.0.0941: CI failures in sound dummy Problem: CI failures in sound dummy. Solution: Temporarily disable building sound dummy. (closes https://github.com/vim/vim/issues/11610) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,22 +174,23 @@ jobs: sudo usermod -a -G audio "${USER}" sudo bash ci/setup-xvfb.sh - - name: Cache snd-dummy - uses: actions/cache@v3 - with: - path: ${{ env.SND_DUMMY_DIR }} - key: linux-${{ env.LINUX_VERSION }}-snd-dummy + # FIXME: Temporarily disabled because of build errors + #- name: Cache snd-dummy + # uses: actions/cache@v3 + # with: + # path: ${{ env.SND_DUMMY_DIR }} + # key: linux-${{ env.LINUX_VERSION }}-snd-dummy - - name: Set up snd-dummy - run: | - if [[ ! -e ${SND_DUMMY_DIR}/snd-dummy.ko ]]; then - bash ci/build-snd-dummy.sh - fi - cd "${SND_DUMMY_DIR}" - sudo insmod soundcore.ko - sudo insmod snd.ko - sudo insmod snd-pcm.ko - sudo insmod snd-dummy.ko + #- name: Set up snd-dummy + # run: | + # if [[ ! -e ${SND_DUMMY_DIR}/snd-dummy.ko ]]; then + # bash ci/build-snd-dummy.sh + # fi + # cd "${SND_DUMMY_DIR}" + # sudo insmod soundcore.ko + # sudo insmod snd.ko + # sudo insmod snd-pcm.ko + # sudo insmod snd-dummy.ko - 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 */ /**/ + 941, +/**/ 940, /**/ 939,