summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/rundyecmd.sh
diff options
context:
space:
mode:
authorjak1 <jak1@themanaworld.org>2023-04-07 16:51:54 +0200
committerjak1 <jak1@themanaworld.org>2023-04-07 16:52:34 +0200
commita6006f9c59dccb6af4bf9b3e192bdb829c54fe87 (patch)
tree4df48d2b9ee14d51d0d6428436c49ed29f4395cb /tools/ci/scripts/rundyecmd.sh
parent279c7ba28804960ae3b2ec0753b4c3a92d5a6ede (diff)
downloadmv-a6006f9c59dccb6af4bf9b3e192bdb829c54fe87.tar.gz
mv-a6006f9c59dccb6af4bf9b3e192bdb829c54fe87.tar.bz2
mv-a6006f9c59dccb6af4bf9b3e192bdb829c54fe87.tar.xz
mv-a6006f9c59dccb6af4bf9b3e192bdb829c54fe87.zip
sorting CI:
moved disabled jobs to 'tools/ci/disabled.gitlab-ci.yml' added check before rm, removes a lot unnecessary noise form pipeline output (req. init.sh) added N_RUNS to runtests.sh (without arg it runs 3 times the tests, given amount otherwise) added gcc-12 job
Diffstat (limited to 'tools/ci/scripts/rundyecmd.sh')
-rwxr-xr-xtools/ci/scripts/rundyecmd.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci/scripts/rundyecmd.sh b/tools/ci/scripts/rundyecmd.sh
index fc399f822..00001452a 100755
--- a/tools/ci/scripts/rundyecmd.sh
+++ b/tools/ci/scripts/rundyecmd.sh
@@ -1,11 +1,11 @@
#!/usr/bin/env bash
function testdye {
- rm test1.png || true
+ silent_rm test1.png || true
echo ./src/dyecmd "data/icons/manaplus.png|$1" test1.png
./src/dyecmd "data/icons/manaplus.png|$1" test1.png || exit 1
ls test1.png || exit 1
- rm test1.png || true
+ silent_rm test1.png || true
}
export SDL_VIDEODRIVER="dummy"