IEP-1109 Target provided based on target's id and not IDF target property #571
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven on Windows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Clone IDF Release From Github | |
uses: actions/checkout@v2 | |
with: | |
repository: espressif/esp-idf | |
path: dependencies/idf-tools | |
submodules: 'true' | |
ref: v4.4 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Set up Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.8.4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Maven | |
run: mvn clean verify "-Djarsigner.skip=true" "-DskipTests=false" | |
- name: Publish Test Reports | |
if: ${{ always() }} | |
uses: phoenix-actions/test-reporting@v12 | |
with: | |
name: Windows Test Reports | |
path: | |
tests/*/*/*/TEST-*.xml | |
reporter: java-junit |