tests: add support for SCL-ized LLVM 13 (llvm-toolset-13.0)
This commit is contained in:
parent
68259514b8
commit
23fb27dabb
@ -1,3 +1,15 @@
|
||||
#
|
||||
# Build/PR gating tests for *LLVM 13*
|
||||
#
|
||||
# Compatible with various LLVM 13 distributions:
|
||||
#
|
||||
# * Fedora (ursine packages)
|
||||
# * Centos 9 stream (ursine packages)
|
||||
# * RHEL-9 (ursine packages)
|
||||
# * RHEL-8 (Red Hat module)
|
||||
# * RHEL-7 (software collection)
|
||||
#
|
||||
|
||||
summary: Clang tests for build/PR gating
|
||||
adjust:
|
||||
- because: "Plan to be ran when either executed locally, or executed by CI system to gate a build or PR."
|
||||
@ -6,6 +18,12 @@ adjust:
|
||||
and trigger != commit
|
||||
and trigger != build
|
||||
enabled: false
|
||||
|
||||
- because: "When testing SCL-ized LLVM, the collection must be enabled first"
|
||||
environment+:
|
||||
WITH_SCL: "scl enable llvm-toolset-13.0 rust-toolset-1.58"
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
||||
discover:
|
||||
- name: Local tests
|
||||
how: fmf
|
||||
@ -17,10 +35,6 @@ discover:
|
||||
test: integration-test-suite
|
||||
execute:
|
||||
how: tmt
|
||||
prepare:
|
||||
- name: packages
|
||||
how: install
|
||||
package: clang
|
||||
provision:
|
||||
hardware:
|
||||
memory: ">= 4 GiB"
|
||||
|
@ -1,4 +1,12 @@
|
||||
summary: clang-format-diff
|
||||
test: ./test.sh
|
||||
require:
|
||||
- clang-tools-extra
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require:
|
||||
- clang-tools-extra
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require:
|
||||
- llvm-toolset-13.0-clang-tools-extra
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
@ -1,5 +1,5 @@
|
||||
summary: fedora-flags
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require:
|
||||
- annobin
|
||||
- redhat-rpm-config
|
||||
|
@ -7,7 +7,20 @@ summary: libomp tests
|
||||
# it shouldn't be part of the `/tests/default` plan.
|
||||
tag:
|
||||
- not-in-default
|
||||
test: ./test.sh
|
||||
require:
|
||||
- clang
|
||||
- libomp
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require:
|
||||
- clang
|
||||
- clang-libs
|
||||
- libomp
|
||||
- libomp-devel
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require:
|
||||
- llvm-toolset-13.0-clang
|
||||
- llvm-toolset-13.0-clang-libs
|
||||
- llvm-toolset-13.0-libomp
|
||||
- llvm-toolset-13.0-libomp-devel
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
@ -6,7 +6,8 @@ adjust:
|
||||
when: "distro == rhel"
|
||||
enabled: false
|
||||
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
|
||||
require:
|
||||
- git
|
||||
- clang
|
||||
|
@ -1,30 +1,36 @@
|
||||
# TODO REVIEW: better summary
|
||||
summary: ""
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require:
|
||||
- glibc-devel
|
||||
- glibc-static
|
||||
- gcc
|
||||
adjust:
|
||||
- environment+:
|
||||
CXXLIB: "libc++"
|
||||
require:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require+:
|
||||
- clang
|
||||
- lld
|
||||
- compiler-rt
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require+:
|
||||
- llvm-toolset-13.0-clang
|
||||
- llvm-toolset-13.0-lld
|
||||
- llvm-toolset-13.0-compiler-rt
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
||||
- environment+:
|
||||
CXXLIB: "libc++"
|
||||
require+:
|
||||
- libcxx-devel
|
||||
- libcxx-static
|
||||
- glibc-devel
|
||||
- glibc-static
|
||||
- gcc
|
||||
when: "distro == fedora"
|
||||
because: testing against libcxx package in Fedora
|
||||
|
||||
- environment+:
|
||||
CXXLIB: "libstdc++"
|
||||
require:
|
||||
- clang
|
||||
- lld
|
||||
- compiler-rt
|
||||
- glibc-devel
|
||||
- glibc-static
|
||||
- gcc
|
||||
- libstdc++
|
||||
when: "distro == rhel"
|
||||
because: testing against libstdc++ package in RHEL as libcxx is not shipped with RHEL
|
||||
require: []
|
||||
|
@ -14,7 +14,7 @@ adjust:
|
||||
tag:
|
||||
- not-in-default
|
||||
# rhbz#1582884
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require:
|
||||
- git
|
||||
- ocl-icd-devel
|
||||
|
@ -1,4 +1,13 @@
|
||||
summary: RHBZ1647130
|
||||
test: ./test.sh
|
||||
require:
|
||||
- clang
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require: []
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require+:
|
||||
- clang
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require+:
|
||||
- llvm-toolset-13.0-clang
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
@ -1,4 +1,13 @@
|
||||
summary: RHBZ1657544
|
||||
test: ./test.sh
|
||||
require:
|
||||
- clang
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require: []
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require+:
|
||||
- clang
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require+:
|
||||
- llvm-toolset-13.0-clang
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
@ -1,5 +1,14 @@
|
||||
summary: rhbz-482491
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
require:
|
||||
- clang
|
||||
- libgcc
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require+:
|
||||
- clang
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require+:
|
||||
- llvm-toolset-13.0-clang
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
@ -1,21 +1,31 @@
|
||||
# TODO REVIEW: better summary
|
||||
summary: ""
|
||||
test: ./test.sh
|
||||
test: "$WITH_SCL ./test.sh"
|
||||
adjust:
|
||||
# Common requirements when LLVM is not SCL-ized
|
||||
- require+:
|
||||
- clang
|
||||
when: "collection is not defined"
|
||||
|
||||
# Requirements for SCL-ized LLVM
|
||||
- require+:
|
||||
- llvm-toolset-13.0-clang
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
|
||||
- environment+:
|
||||
CXXLIBS: "libc++"
|
||||
require:
|
||||
- clang
|
||||
- libcxx-devel
|
||||
when: "distro == fedora"
|
||||
because: testing against libcxx package in Fedora
|
||||
|
||||
- environment+:
|
||||
CXXLIBS: "libstdc++"
|
||||
require:
|
||||
- clang
|
||||
- libstdc++
|
||||
when: "distro == rhel"
|
||||
because: testing against libstdc++ package in RHEL as libcxx is not shipped with RHEL
|
||||
|
||||
# TODO REVIEW: are these all requirements? test.sh seems to run quite a lot of stuff, looks like we
|
||||
# need more packages from LLVM family.
|
||||
require: []
|
||||
|
Loading…
Reference in New Issue
Block a user