mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-08-01 11:44:39 +02:00
62 lines
1.8 KiB
YAML
62 lines
1.8 KiB
YAML
name: "mdns: host-tests"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, labeled]
|
|
|
|
jobs:
|
|
host_test_mdns:
|
|
if: contains(github.event.pull_request.labels.*.name, 'mdns') || github.event_name == 'push'
|
|
name: Host test
|
|
runs-on: ubuntu-22.04
|
|
container: espressif/idf:release-v5.1
|
|
|
|
steps:
|
|
- name: Checkout esp-protocols
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: esp-protocols
|
|
|
|
- name: Build and Test
|
|
shell: bash
|
|
run: |
|
|
apt-get update && apt-get install -y dnsutils gcc g++
|
|
. ${IDF_PATH}/export.sh
|
|
cd $GITHUB_WORKSPACE/esp-protocols/components/mdns/tests/host_test
|
|
idf.py build
|
|
./build/mdns_host.elf &
|
|
dig +short -p 5353 @224.0.0.251 myesp.local > ip.txt
|
|
cat ip.txt | xargs dig +short -p 5353 @224.0.0.251 -x
|
|
cat ip.txt
|
|
|
|
build_afl_host_test_mdns:
|
|
if: contains(github.event.pull_request.labels.*.name, 'mdns') || github.event_name == 'push'
|
|
name: Build AFL host test
|
|
strategy:
|
|
matrix:
|
|
idf_ver: ["latest"]
|
|
idf_target: ["esp32"]
|
|
|
|
runs-on: ubuntu-22.04
|
|
container: espressif/idf:${{ matrix.idf_ver }}
|
|
steps:
|
|
- name: Checkout esp-protocols
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: esp-protocols
|
|
- name: Install Necessary Libs
|
|
run: |
|
|
apt-get update -y
|
|
apt-get install -y libbsd-dev
|
|
- name: Build ${{ matrix.example }} with IDF-${{ matrix.idf_ver }} for ${{ matrix.idf_target }}
|
|
env:
|
|
IDF_TARGET: ${{ matrix.idf_target }}
|
|
shell: bash
|
|
run: |
|
|
. ${IDF_PATH}/export.sh
|
|
cd $GITHUB_WORKSPACE/esp-protocols/components/mdns/tests/test_afl_fuzz_host/
|
|
make INSTR=off
|