comparison .github/workflows/ci.yml @ 29934:275877ab83f0 v9.0.0305

patch 9.0.0305: CI lists useless deprecation warnings Commit: https://github.com/vim/vim/commit/533c306921a3ac46ab92f35dfc4ebd22b3da845d Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sun Aug 28 19:41:36 2022 +0100 patch 9.0.0305: CI lists useless deprecation warnings Problem: CI lists useless deprecation warnings. Solution: Ignore deprecation warnings. (closes https://github.com/vim/vim/issues/11003)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 20:45:03 +0200
parents bbd39d6faab3
children a48a6efb987f
comparison
equal deleted inserted replaced
29933:3da5d586a1d0 29934:275877ab83f0
19 env: 19 env:
20 CC: ${{ matrix.compiler }} 20 CC: ${{ matrix.compiler }}
21 TEST: test 21 TEST: test
22 SRCDIR: ./src 22 SRCDIR: ./src
23 LEAK_CFLAGS: -DEXITFREE 23 LEAK_CFLAGS: -DEXITFREE
24 CFLAGS: -Wno-error=deprecated-declarations 24 CFLAGS: -Wno-deprecated-declarations
25 LOG_DIR: ${{ github.workspace }}/logs 25 LOG_DIR: ${{ github.workspace }}/logs
26 TERM: xterm 26 TERM: xterm
27 DISPLAY: ':99' 27 DISPLAY: ':99'
28 DEBIAN_FRONTEND: noninteractive 28 DEBIAN_FRONTEND: noninteractive
29 29