comparison .github/workflows/ci.yml @ 29200:1ef87506a3a6 v8.2.5119

patch 8.2.5119: CI uses cache v2 Commit: https://github.com/vim/vim/commit/2ff7e7e16db4791ec3fe45766120552ece42e8a6 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Fri Jun 17 21:27:38 2022 +0100 patch 8.2.5119: CI uses cache v2 Problem: CI uses cache v2. Solution: Use cache v3. (closes https://github.com/vim/vim/issues/10588)
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Jun 2022 22:30:03 +0200
parents 8957a70ce228
children bbd39d6faab3
comparison
equal deleted inserted replaced
29199:a93c1596c799 29200:1ef87506a3a6
175 sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 175 sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0
176 sudo usermod -a -G audio "${USER}" 176 sudo usermod -a -G audio "${USER}"
177 sudo bash ci/setup-xvfb.sh 177 sudo bash ci/setup-xvfb.sh
178 178
179 - name: Cache snd-dummy 179 - name: Cache snd-dummy
180 uses: actions/cache@v2 180 uses: actions/cache@v3
181 with: 181 with:
182 path: ${{ env.SND_DUMMY_DIR }} 182 path: ${{ env.SND_DUMMY_DIR }}
183 key: linux-${{ env.LINUX_VERSION }}-snd-dummy 183 key: linux-${{ env.LINUX_VERSION }}-snd-dummy
184 184
185 - name: Set up snd-dummy 185 - name: Set up snd-dummy
451 type NUL > urls.txt 451 type NUL > urls.txt
452 echo %LUA_RELEASE%>> urls.txt 452 echo %LUA_RELEASE%>> urls.txt
453 echo %WINPTY_URL%>> urls.txt 453 echo %WINPTY_URL%>> urls.txt
454 454
455 - name: Cache downloaded files 455 - name: Cache downloaded files
456 uses: actions/cache@v2 456 uses: actions/cache@v3
457 with: 457 with:
458 path: downloads 458 path: downloads
459 key: ${{ runner.os }}-${{ matrix.bits }}-${{ hashFiles('urls.txt') }} 459 key: ${{ runner.os }}-${{ matrix.bits }}-${{ hashFiles('urls.txt') }}
460 460
461 - name: Download dependencies 461 - name: Download dependencies