https://github.com/cilium/cilium
Revision 51df5157d735483f71f52967888d33bdd9743bcf authored by Paul Chaignon on 28 June 2021, 15:58:56 UTC, committed by André Martins on 28 June 2021, 23:06:22 UTC
GitHub jobs are usually set to status 'error' when cancelled. We should
do the same for ci-xxx jobs when they are cancelled. Having the state
appear as an error clarifies that the author, janitor, and reviewers
should take notice of that workflow's result.

Signed-off-by: Paul Chaignon <paul@cilium.io>
1 parent f263235
Raw File
Tip revision: 51df5157d735483f71f52967888d33bdd9743bcf authored by Paul Chaignon on 28 June 2021, 15:58:56 UTC
.github: Set commit status to error when workflow are cancelled
Tip revision: 51df515
filter_config.h
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2017-2020 Authors of Cilium */

/*
 * This is just a dummy header with dummy values to allow for test
 * compilation without the full code generation engine backend.
 */
#define CIDR4_HMAP_ELEMS 1024
#define CIDR4_LMAP_ELEMS 1024
#define CIDR4_HMAP_NAME v4_fix
#define CIDR4_LMAP_NAME v4_dyn
#define CIDR4_FILTER
#define CIDR4_LPM_PREFILTER
#define CIDR6_HMAP_NAME v6_fix
#define CIDR6_LMAP_NAME v6_dyn
#define CIDR6_FILTER
#define CIDR6_LPM_PREFILTER
back to top