Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Sep 13, 2024
1 parent bf14223 commit f05b69a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/frog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ jobs:
- uses: LanguageMachines/ticcactions/setup-cppcheck@v1
- uses: LanguageMachines/ticcactions/irc-nick@v1

- name: Install Special Dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]
then
sudo apt-get install expect
else
brew install telnet
brew install cppcheck
fi
- uses: LanguageMachines/ticcactions/cpp-submodule-build@v1
with:
module: ticcutils
Expand Down Expand Up @@ -101,6 +111,7 @@ jobs:
details: ${{ env.action_details }}

- name: frogtests
id: frogtests
if: ${{ env.action_status == '' }}
run: |
git clone --depth=1 --single-branch https://github.com/LanguageMachines/frogtests.git
Expand All @@ -111,6 +122,12 @@ jobs:
echo "action_details=$TEST_STAT errors" >> $GITHUB_ENV
continue-on-error: true

- name: log problems
if: ${{ steps.frogtests.outcome != 'success' }}
run: |
cat frogtests/*.err
cat frogtests/*.diff
- name: Notify IRC of end result
uses: LanguageMachines/ticcactions/irc-status@v1
with:
Expand Down

0 comments on commit f05b69a

Please sign in to comment.