❌ FAIL: Test report for kernel (ark)

2020-07-31 Thread CKI Project
Hello, We ran automated tests on a recent commit from this kernel tree: Kernel repo: https://gitlab.com/cki-project/kernel-ark.git Commit: e6e5202ceb49 - [redhat] kernel-5.8.0-0.rc7.20200801git7dc6fd0f3b84.1 The results of these automated tests are provided below.

Re: [OS-BUILD PATCH 0/2] Kernel ark config review netsched v3

2020-07-31 Thread Marcelo Ricardo Leitner
On Fri, Jul 31, 2020 at 07:33:30PM -, GitLab Bridge on behalf of dcaratti wrote: > From: dcaratti on gitlab.com > > The merge request had no description. Acked-by: Marcelo Ricardo Leitner ___ kernel mailing list -- kernel@lists.fedoraproject.org

[OS-BUILD PATCH 0/2] Kernel ark config review netsched v3

2020-07-31 Thread GitLab Bridge on behalf of dcaratti
From: dcaratti on gitlab.com The merge request had no description. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedoraproject.org Fedora Code of Conduct:

[OS-BUILD PATCH 1/2] redhat: ark: enable CONFIG_NET_SCH_ETF

2020-07-31 Thread GitLab Bridge on behalf of dcaratti
From: Davide Caratti move from 'fedora' to 'common', and remove the explicit disable from ark, so it's enabled in the same way both on ark and fedora. Signed-off-by: Davide Caratti --- redhat/configs/ark/generic/CONFIG_NET_SCH_ETF| 1 - redhat/configs/{fedora =>

[OS-BUILD PATCH 2/2] redhat: ark: enable CONFIG_NET_SCH_TAPRIO

2020-07-31 Thread GitLab Bridge on behalf of dcaratti
From: Davide Caratti move from 'fedora' to 'common', and remove the explicit disable from ark, so it's enabled in the same way both on ark and fedora. Signed-off-by: Davide Caratti --- redhat/configs/ark/generic/CONFIG_NET_SCH_TAPRIO| 1 - redhat/configs/{fedora =>

Re: [OS-BUILD PATCH] gitattributes: Remove unnecesary export restrictions

2020-07-31 Thread Don Zickus
On Fri, Jul 31, 2020 at 01:01:34AM -, GitLab Bridge on behalf of prarit wrote: > From: Prarit Bhargava > > Both redhat/ and the makefile are publicly available. There is no reason > to exclude them from tarballs, etc. > > Remove the export restrictions on redhat/ and the makefile. As

[OS-BUILD PATCH 3/3] Add ability to sync upstream through Makefile

2020-07-31 Thread GitLab Bridge on behalf of dzickusrh
From: Don Zickus Currently all the magic to sync upstream with os-build and ark-patches is done through scripts in redhat/scripts/ci and .gitlab-ci.yml. Make this easier by enabling this routine through a redhat/Makefile. This allows: * gitlab-ci.yml and maintainer to use same script * allows

[OS-BUILD PATCH 2/3] Add master merge check

2020-07-31 Thread GitLab Bridge on behalf of dzickusrh
From: Don Zickus Avoid constantly running the config update scripts when the merge to master did not update anything. This means there can be no new configs to generate. Same argument for ark-patches. The only downside I see with this check is if the generate config scripts fail and this

[OS-BUILD PATCH 1/3] Replace hardcoded values 'os-build' and project id with variables

2020-07-31 Thread GitLab Bridge on behalf of dzickusrh
From: Don Zickus As a step towards switching away from the os-build branch start by using more variables. The patch does 2 things: * adds a use of PROJECT_ID * replace os-build with BRANCH in the update configs script Signed-off-by: Don Zickus --- redhat/scripts/ci/ark-create-release.sh | 2

Re: [OS-BUILD PATCH] redhat/Makefile.common: Fix MARKER

2020-07-31 Thread Don Zickus
On Fri, Jul 31, 2020 at 12:56:37AM -, GitLab Bridge on behalf of prarit wrote: > From: Prarit Bhargava > > 'make setup-source' is failing with, for example, > > fatal: Not a valid object name master > BUILDID is "hello". Update '/home/prarit/git-kernel/kernel-ark/localversion' > to

Re: [OS-BUILD PATCHv2] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread Don Zickus
On Fri, Jul 31, 2020 at 02:55:54PM -, GitLab Bridge on behalf of prarit wrote: > dist-configs-prep: dist-clean-configs > - cd $(REDHAT)/configs; TARGET=$(DIST_TARGET) ./build_configs.sh > $(PACKAGE_NAME) $(ARCH_MACH) > + cd $(REDHAT)/configs; ./build_configs.sh $(PACKAGE_NAME)

Re: [OS-BUILD PATCHv2] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread Marcelo Ricardo Leitner
On Fri, Jul 31, 2020 at 02:55:54PM -, GitLab Bridge on behalf of prarit wrote: > From: Prarit Bhargava > > Patch didn't make it to the mailing list. > > No changes for v2. > > P. > > ---8<--- > > The 'rh-configs' and 'fedora-configs' targets are not working properly. > They should be

Re: [OS-BUILD PATCHv2 0/23] ARK: disable uncommon net/sched modules

2020-07-31 Thread Marcelo Ricardo Leitner
On Tue, Jul 28, 2020 at 01:03:07PM -, GitLab Bridge on behalf of dcaratti wrote: > From: dcaratti on gitlab.com > > after a joint review of the configuration for net/sched area, disable > qdiscs/filters/actions that are not commonly used. Acked-by: Marcelo Ricardo Leitner Plans on

Re: [OS-BUILD PATCHv2] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread Prarit Bhargava
On 7/31/20 11:15 AM, Jiri Benc wrote: > On Fri, 31 Jul 2020 14:55:54 -, GitLab Bridge on behalf of prarit wrote: >> +fedora-configs: dist-configs-prep >> +@cd $(REDHAT)/configs; rm -f *rhel*.config >> + >> +rh-configs: dist-configs-prep >> +@cd $(REDHAT)/configs; rm -f *fedora*.config

Re: [OS-BUILD PATCHv2] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread Jiri Benc
On Fri, 31 Jul 2020 14:55:54 -, GitLab Bridge on behalf of prarit wrote: > +fedora-configs: dist-configs-prep > + @cd $(REDHAT)/configs; rm -f *rhel*.config > + > +rh-configs: dist-configs-prep > + @cd $(REDHAT)/configs; rm -f *fedora*.config Prarit, I wouldn't expect doing make

[OS-BUILD PATCHv2] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread GitLab Bridge on behalf of prarit
From: Prarit Bhargava Patch didn't make it to the mailing list. No changes for v2. P. ---8<--- The 'rh-configs' and 'fedora-configs' targets are not working properly. They should be creating ELN and Fedora configs but they only create some temporary/intermediate build files. The targets

[OS-BUILD PATCH] redhat/Makefile: Fix 'rh-configs' and 'fedora-configs' targets

2020-07-31 Thread GitLab Bridge on behalf of prarit
From: Prarit Bhargava The 'rh-configs' and 'fedora-configs' targets are not working properly. They should be creating ELN and Fedora configs but they only create some temporary/intermediate build files. The targets must call dist-configs-prep, and remove the configs that each target doesn't

Re: [OS-BUILD PATCH] gitattributes: Remove unnecesary export restrictions

2020-07-31 Thread Prarit Bhargava
On 7/30/20 9:01 PM, GitLab Bridge on behalf of prarit wrote: > From: Prarit Bhargava Forgot to cc dzickus and jforbes. P. > > Both redhat/ and the makefile are publicly available. There is no reason > to exclude them from tarballs, etc. > > Remove the export restrictions on redhat/ and the

Re: [OS-BUILD PATCH] redhat/Makefile.common: Fix MARKER

2020-07-31 Thread Prarit Bhargava
On 7/30/20 8:56 PM, GitLab Bridge on behalf of prarit wrote: > From: Prarit Bhargava > Forgot to cc dzickus & jforbes. P. > 'make setup-source' is failing with, for example, > > fatal: Not a valid object name master > BUILDID is "hello". Update