Skip to content

Commit

Permalink
test: Download dtmf2num source and compile and install it before usin…
Browse files Browse the repository at this point in the history
…g it, since we are testing on an Alpine image, not an Ubuntu or Debian image
  • Loading branch information
volkertb committed Aug 19, 2024
1 parent 64d0274 commit dfd3fe9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/02-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,14 @@ 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
dos_exit_code=$(cat test/exitcode.txt || echo 254)
if [ $dos_exit_code -ne 0 ]; then exit $dos_exit_code; fi
echo DOS exit code was $dos_exit_code
echo step2
#if [ $dos_exit_code -ne 0 ]; then
# exit $dos_exit_code
#fi
echo step3
apt install -y dtmf2num
echo step4
dtmf2num hda_out.wav

0 comments on commit dfd3fe9

Please sign in to comment.