Skip to content

Commit

Permalink
ci: Clean up script after previous commit finally fixed the DOS error…
Browse files Browse the repository at this point in the history
… code propagation (i.e. the line with the if-statement)
  • Loading branch information
volkertb committed Aug 19, 2024
1 parent b22309d commit d40a958
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/02-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,8 @@ jobs:
chmod +x /usr/local/bin/run_cicd_dos.sh
/usr/local/bin/run_cicd_dos.sh
# Propagate error code from DOS test or exit with error code 254 if the exit code file is missing
echo step1
export dos_exit_code=$(cat test/exitcode.txt || echo 254)
echo DOS exit code was $dos_exit_code
echo step2
dos_exit_code=$(cat test/exitcode.txt || echo 254)
if [ "$dos_exit_code" -ne "0" ]; then exit $dos_exit_code; fi
history
echo step3
wget -P /tmp https://aluigi.altervista.org/mytoolz/dtmf2num.zip
echo "187d43e4d57535da3386eee3accdbcd09526378e3258db7f1bd5afccd0c64360 /tmp/dtmf2num.zip" | sha256sum -c
mkdir /tmp/dtmf2num
Expand Down

0 comments on commit d40a958

Please sign in to comment.