Skip to content

Commit

Permalink
shell: be less verbose
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio M. Di Nitto <[email protected]>
  • Loading branch information
fabbione committed Sep 27, 2023
1 parent 0bcf9b8 commit c97ee7c
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 21 deletions.
9 changes: 1 addition & 8 deletions ci-build
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
#!/bin/sh

set -ev
set -e

. $HOME/ci-tools/ci-set-env

# we shouldn´t be receiving any updates about gh-pages
# after moving to pipelines, but better safe than sorry
if [ "$CITARGET" = "origin/gh-pages" ]; then
echo "Skipping tests for web page updates"
exit 0
fi

ci-build-info
ci-setup-rpm
ci-setup-src
Expand Down
2 changes: 1 addition & 1 deletion ci-build-info
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

echo ===== PACKAGE LIST =====
# BSD
Expand Down
2 changes: 1 addition & 1 deletion ci-build-src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

. $HOME/ci-tools/ci-rpm-common

Expand Down
2 changes: 1 addition & 1 deletion ci-generate-start-node
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

START_NODE_DIR=$HOME/bin

Expand Down
2 changes: 1 addition & 1 deletion ci-get-artifacts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -ex
set -e

publish=/var/www/ci.kronosnet.org/

Expand Down
2 changes: 1 addition & 1 deletion ci-install-src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

if [ -n "$build" ]; then
echo "$build detected, nothing to do here!"
Expand Down
2 changes: 1 addition & 1 deletion ci-setup-rpm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

. $HOME/ci-tools/ci-rpm-common

Expand Down
2 changes: 1 addition & 1 deletion ci-setup-src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

if [ -f ./autogen.sh ]; then
echo "./autogen.sh"
Expand Down
2 changes: 1 addition & 1 deletion ci-tests-src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

. $HOME/ci-tools/ci-rpm-common

Expand Down
2 changes: 1 addition & 1 deletion ci-update-apt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

cd /root

Expand Down
2 changes: 1 addition & 1 deletion ci-update-common
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

rm -rf $HOME/rpmbuild
rm -rf /usr/src/packages/BUILDROOT/*
Expand Down
2 changes: 1 addition & 1 deletion ci-update-freebsd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

cd /root

Expand Down
2 changes: 1 addition & 1 deletion ci-update-yum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

cd /root

Expand Down
2 changes: 1 addition & 1 deletion ci-update-zypper
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ev
set -e

cd /root

Expand Down

0 comments on commit c97ee7c

Please sign in to comment.