File tree Expand file tree Collapse file tree 5 files changed +15
-12
lines changed
Expand file tree Collapse file tree 5 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 2222
2323 steps :
2424 - name : Code checkout
25- uses : actions/checkout@v4
25+ uses : actions/checkout@v5
2626
2727 - name : Login to DockerHub
2828 uses : docker/login-action@v3
4242
4343 steps :
4444 - name : Checkout
45- uses : actions/checkout@v4
45+ uses : actions/checkout@v5
4646
4747 - name : Check scripts with Shellcheck
4848 uses : essentialkaos/shellcheck-action@v1
5555
5656 steps :
5757 - name : Checkout
58- uses : actions/checkout@v4
58+ uses : actions/checkout@v5
5959
6060 - name : Check dockerfiles with Hadolint
6161 uses : essentialkaos/hadolint-action@v1
6868
6969 steps :
7070 - name : Checkout
71- uses : actions/checkout@v4
71+ uses : actions/checkout@v5
7272
7373 - name : Check spelling
7474 uses : crate-ci/typos@master
9797 # More info about issue: https://github.com/actions/runner/issues/491
9898
9999 - name : Checkout
100- uses : actions/checkout@v4
100+ uses : actions/checkout@v5
101101 if : ${{ github.event_name == 'pull_request' }}
102102
103103 - name : Login to DockerHub
Original file line number Diff line number Diff line change 3232
3333 steps :
3434 - name : Checkout
35- uses : actions/checkout@v4
35+ uses : actions/checkout@v5
3636 with :
3737 fetch-depth : 0
3838
Original file line number Diff line number Diff line change @@ -320,11 +320,11 @@ remoteBuildProcess() {
320320
321321 show " "
322322
323- local has_errors dl_start grc_time packages package_name package_file
323+ local exit_code has_errors dl_start grc_time packages package_name package_file
324324
325- has_errors =$( tail -1 " $tmp_output " | grep -v " exit 0" )
325+ exit_code =$( tail -100 " $tmp_output " | grep -E ' ^\+ ' | tail -1 | grep " + exit 0" )
326326
327- if [[ -z " $has_errors " ]] ; then
327+ if [[ -n " $exit_code " ]] ; then
328328 grc_time=$( getGraceDuration " $build_start " )
329329
330330 show " Build complete! The build took $grc_time ." $GREEN
Original file line number Diff line number Diff line change 1313APP=" RPMBuilder"
1414
1515# Utility version (String)
16- VER=" 3.4.3 "
16+ VER=" 3.4.4 "
1717
1818# Utility description (String)
1919DESC=" RPM package build helper"
Original file line number Diff line number Diff line change 66
77Summary: RPM package build helper
88Name: rpmbuilder
9- Version: 3.4.3
10- Release: 1 %{?dist }
9+ Version: 3.4.4
10+ Release: 0 %{?dist }
1111License: Apache License, Version 2.0
1212Group: Development/Tools
1313URL: https://kaos.sh/rpmbuilder
@@ -58,6 +58,9 @@ install -pm 644 libexec/* %{buildroot}%{_libexecdir}/%{name}/
5858################################################################################
5959
6060%changelog
61+ *
Mon Aug 11 2025 Anton Novojilov <[email protected] > -
3.4.4-0 62+ - Improved support of rpmbuild on EL10
63+
6164*
Fri Aug 08 2025 Anton Novojilov <[email protected] > -
3.4.3-1 6265- ncurses and perl added to dependencies
6366
You can’t perform that action at this time.
0 commit comments