Skip to content

feat(dummy_phy): created a dummy PHY instace for direct EMAC to EMAC #35

feat(dummy_phy): created a dummy PHY instace for direct EMAC to EMAC

feat(dummy_phy): created a dummy PHY instace for direct EMAC to EMAC #35

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
idf_ver: ["latest"]
example: ["simple-ethernet"]
idf_target: ["esp32"]
runs-on: ubuntu-20.04
container: espressif/idf:${{ matrix.idf_ver }}
steps:
- name: Checkout esp_eth_drivers
uses: actions/checkout@master
with:
path: esp_eth_drivers
- 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_eth_drivers/ethernet_init/examples/${{ matrix.example }}
idf.py build