mirror of
https://src.fedoraproject.org/rpms/libomp.git
synced 2024-11-28 09:14:55 +00:00
Setup minimal gating based on integration test suite
This commit is contained in:
parent
e2130e5935
commit
6b80ab3170
3 changed files with 75 additions and 0 deletions
12
gating.yaml
Normal file
12
gating.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_context: bodhi_update_push_testing
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_context: bodhi_update_push_stable
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
38
tests/integration-test-suite/runtest.sh
Executable file
38
tests/integration-test-suite/runtest.sh
Executable file
|
@ -0,0 +1,38 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "usage `basename $0` [OPTIONS]"
|
||||||
|
echo " --threads NUM The number of threads to use for running tests."
|
||||||
|
}
|
||||||
|
|
||||||
|
thread_args=""
|
||||||
|
repo_url=https://github.com/opencollab/llvm-toolchain-integration-test-suite
|
||||||
|
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case $1 in
|
||||||
|
--threads)
|
||||||
|
shift
|
||||||
|
threads="$1"
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
echo "unknown option: $1"
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -n "$threads" ]; then
|
||||||
|
thread_args="-j$threads"
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
cd $(mktemp -d -p /var/tmp)
|
||||||
|
git clone $repo_url
|
||||||
|
cd llvm-toolchain-integration-test-suite
|
||||||
|
mkdir _build && cd _build
|
||||||
|
cmake .. -GNinja
|
||||||
|
ninja $thread_args check
|
25
tests/tests.yml
Normal file
25
tests/tests.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
required_packages:
|
||||||
|
# the requirements below are for the integration suite
|
||||||
|
- cmake
|
||||||
|
- llvm-devel
|
||||||
|
- clang
|
||||||
|
- clang-analyzer
|
||||||
|
- clang-tools-extra
|
||||||
|
- compiler-rt
|
||||||
|
- ninja-build
|
||||||
|
- libcxx-devel
|
||||||
|
- libomp-devel
|
||||||
|
- python-lit
|
||||||
|
- lld
|
||||||
|
- lldb
|
||||||
|
- git
|
||||||
|
- make
|
||||||
|
- libstdc++-static
|
||||||
|
- clang-devel
|
||||||
|
tests:
|
||||||
|
- integration-test-suite
|
Loading…
Reference in a new issue