Update OpenWrt Makefile #35
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
--- | |
name: Quick Tests (Windows) | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
smoketest: | |
name: Smoke test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fix Checkout | |
run: | | |
git fetch --force --tags | |
- name: Run minimal test set | |
run: | | |
export CFLAGS="-fprofile-arcs -ftest-coverage" | |
export LDFLAGS="--coverage" | |
./scripts/hack_fakeautoconf.sh | |
make -j4 | |
make test.builtin test.units | |
shell: bash | |
- if: ${{ failure() }} | |
name: Upload tests output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tests-smoketest-windows | |
path: tests |