Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
@ -1 +0,0 @@
|
|||||||
e89c6a3458164552d9301ccc213181f463e5210e SOURCES/cscope-15.9.tar.gz
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/cscope-15.9.tar.gz
|
SOURCES/cscope-15.9.tar.gz
|
||||||
|
/cscope-15.9.tar.gz
|
||||||
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (cscope-15.9.tar.gz) = f3b95da5eb5c036cd39215785990c7cce7ce7b8eda4b18e60792e70d01ffb63809ce32ace310a9aefd88e6761c1609039ccfab0e8e49f81730bc1630babbcb80
|
2
tests/README
Normal file
2
tests/README
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
initial tests:
|
||||||
|
run make check in src, which runs any selftests in the upstream source tarball
|
8
tests/smoke/runtest.sh
Executable file
8
tests/smoke/runtest.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cd ../source
|
||||||
|
aclocal
|
||||||
|
autoheader
|
||||||
|
autoconf
|
||||||
|
automake --add-missing
|
||||||
|
export CSCOPE_BINARY=/usr/bin/cscope
|
||||||
|
./configure && make check
|
52
tests/tests.yml
Normal file
52
tests/tests.yml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
tasks:
|
||||||
|
- name: Add executor host
|
||||||
|
add_host:
|
||||||
|
name: executor
|
||||||
|
ansible_connection: local
|
||||||
|
ansible_host: 127.0.0.1
|
||||||
|
ansible_ssh_connection: local
|
||||||
|
|
||||||
|
- name: Install build requires
|
||||||
|
delegate_to: executor
|
||||||
|
shell: dnf -y install autoconf automake
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
roles:
|
||||||
|
- role: standard-test-source
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
tasks:
|
||||||
|
- name: Copy spec file to remote machine
|
||||||
|
copy:
|
||||||
|
src: "{{ playbook_dir }}/../cscope.spec"
|
||||||
|
dest: /tmp/cscope.spec
|
||||||
|
|
||||||
|
- name: Install build deps
|
||||||
|
shell: dnf -y build-dep /tmp/cscope.spec
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tests:
|
||||||
|
- smoke
|
||||||
|
required_packages:
|
||||||
|
- autoconf
|
||||||
|
- automake
|
||||||
|
- pkgconf-pkg-config
|
||||||
|
- ncurses-devel
|
||||||
|
- flex
|
||||||
|
- bison
|
||||||
|
- m4
|
||||||
|
- gcc
|
||||||
|
- sed
|
||||||
|
- make
|
Loading…
Reference in New Issue
Block a user