CI: join codecov array flags, instead of accessing it directly Commit: https://github.com/vim/vim/commit/9a65a8c270f3f101b59b63f5252c7e96549bed2d Author: rhysd <lin90...@yahoo.co.jp> Date: Tue Nov 19 13:46:17 2024 +0100
CI: join codecov array flags, instead of accessing it directly closes: https://github.com/vim/vim/issues/16082 Signed-off-by: rhysd <lin90...@yahoo.co.jp> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f285ff2d..f67f97cc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -297,7 +297,7 @@ jobs: if: matrix.coverage uses: codecov/codecov-action@v5 with: - flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} + flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ join(matrix.extra, '-') }} token: ${{ secrets.CODECOV_TOKEN }} - name: ASan logs -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1tDOXd-0078Db-1L%40256bit.org.