Heap: Improve debug caller address reporting #780
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run host test suite under valgrind for runtime checking of code. | |
# Also, a quick test that the mocking builds work at all | |
name: Build on host OS | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
host-tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: | | |
sudo apt update | |
sudo apt install valgrind lcov | |
bash ./tests/ci/host_test.sh | |
mock-check: | |
name: Mock | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: | | |
cd tests/host | |
make -j ../../libraries/ESP8266WebServer/examples/FSBrowser/FSBrowser |