From 7a8bde667f103edda83950471aee0c280ee5daae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Wieczorek?= Date: Fri, 25 Apr 2025 11:13:30 +0200 Subject: [PATCH] wip: Extract basic .kernelci.yml file template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Wieczorek --- config/trees.yaml | 16 ---------------- config/trees/linux-pci.yaml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 config/trees/linux-pci.yaml diff --git a/config/trees.yaml b/config/trees.yaml index b1bdc60b0..ead1ad1b2 100644 --- a/config/trees.yaml +++ b/config/trees.yaml @@ -538,22 +538,6 @@ build_configs: <<: *linusw branch: 'for-next' - linux-pci_next: &linux-pci - tree: linux-pci - branch: 'next' - architectures: - - x86_64 - - arm64 - - arm - - linux-pci_for-linus: - <<: *linux-pci - branch: 'for-linus' - - linux-pci_for-kernelci: - <<: *linux-pci - branch: 'for-kernelci' - mainline: <<: *base tree: mainline diff --git a/config/trees/linux-pci.yaml b/config/trees/linux-pci.yaml new file mode 100644 index 000000000..f78ec0392 --- /dev/null +++ b/config/trees/linux-pci.yaml @@ -0,0 +1,16 @@ +build_configs: + linux-pci_next: &linux-pci + tree: linux-pci + branch: 'next' + architectures: + - x86_64 + - arm64 + - arm + + linux-pci_for-linus: + <<: *linux-pci + branch: 'for-linus' + + linux-pci_for-kernelci: + <<: *linux-pci + branch: 'for-kernelci'