Update to upstream release 1.14.1

Update package and add gating tests
Resolves: rhbz#2170072

Signed-off-by: Kamal Heib <kheib@redhat.com>
This commit is contained in:
Kamal Heib 2023-06-02 13:57:15 -04:00
parent 95b197bacf
commit 8d435999b0
5 changed files with 23 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/ucx-1.11.2.tar.gz
/ucx-1.13.0.tar.gz
/ucx-1.13.1.tar.gz
/ucx-1.14.1.tar.gz

View File

@ -1 +1 @@
SHA512 (ucx-1.13.1.tar.gz) = 4e06e039b4dabb8f8618f475eadfa7f40543c80d61f3e02a0b679998f4ff0f13e0d3ed6d87dd23a9f7323d72e59911b6fedd7160b1372bda68deb916440e9d9c
SHA512 (ucx-1.14.1.tar.gz) = 9edb7a2f754094af595c0adf693cd294fc0facc6f08b1235436eea8b3d1b6414c3fb8de8e6619099ba6af99961e47a5441ddc88324207aa123d2c8a3b6faf431

3
tests/run_tests.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
exit 0

11
tests/tests.yml Normal file
View File

@ -0,0 +1,11 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: . # switch to subfolder. This parameter is REQUIRED, use `dir: .` for current folder
run: ./run_tests.sh # this is your test command, its exit code is the outcome of the test
required_packages:
- ucx

View File

@ -16,8 +16,8 @@
%bcond_with vfs
Name: ucx
Version: 1.13.1
Release: 2%{?dist}
Version: 1.14.1
Release: 1%{?dist}
Summary: UCX is a communication library implementing high-performance messaging
License: BSD
@ -308,6 +308,11 @@ library internals, protocol objects, transports status, and more.
%endif
%changelog
* Fri Jun 02 2023 Kamal Heib <kheib@redhat.com> - 1.14.1-1
- Update to upstream release 1.14.1
- Add gating tests
- Resolves: rhbz#2170072
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.13.1-2
- Update to upstream release 1.13.1
- Resolves: rhbz#2112958