Skip to content

sync submodules when building sketches #12

sync submodules when building sketches

sync submodules when building sketches #12

Workflow file for this run

# 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:
push:
branches:
- gcc14/wip
tags-ignore: '**'
pull_request:
branches:
- gcc14/wip
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