Skip to content

Commit

Permalink
Fix typo on report name, add verbose to curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricio-ESP committed Jan 14, 2025
1 parent 2f26066 commit 983780d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,8 @@ jobs:
- name: Fetch latest IDF release
if: runner.os != 'Windows'
run: |
if [[ "$RUNNER_OS" == "macOS" ]]; then
brew install jq
else
sudo apt-get install -y jq
fi
curl -s https://api.github.com/repos/espressif/esp-idf/releases/latest > IDF_latest_release.json
curl -v -s https://api.github.com/repos/espressif/esp-idf/releases/latest > IDF_latest_release.json
cat IDF_latest_release.json
IDF_TAG=$(jq -r .tag_name IDF_latest_release.json)
echo "IDF_TAG=$IDF_TAG" >> $GITHUB_ENV
echo "Latest IDF for default install: $IDF_TAG"
Expand Down Expand Up @@ -169,13 +165,7 @@ jobs:
with:
name: test-results-${{ matrix.package_name }}-${{matrix.run_on}}.zip
path: |
./tests/results-pre-test.json
./tests/results-pre-install-test.json
./tests/results-default-test.json
./tests/results-variation1-test.json
./tests/results-non-interactive-test.json
./tests/results-CNMirror-test.json
./tests/results-CNMirror2-test.json
./tests/results-*.json
./tests/test.log
publish-test-results:
Expand Down
2 changes: 1 addition & 1 deletion tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"variation1-test": "mocha --exit --bail --reporter json --reporter-options output=./results-variation1-test.json runs/variation1.test.js",
"non-interactive-test": "mocha --exit --bail --reporter json --reporter-options output=./results-non-interactive-test.json runs/nonInteractiveInstall.test.js",
"cnrunner1-test": "mocha --exit --bail --reporter json --reporter-options output=./results-CNMirror-test.json runs/CNmirrors.test.js",
"cnrunner2-test": "mocha --exit --bail --reporter json --reporter-options output=./results-CNmirrors2-test.json runs/CNmirrors2.test.js"
"cnrunner2-test": "mocha --exit --bail --reporter json --reporter-options output=./results-CNMirrors2-test.json runs/CNmirrors2.test.js"
}
}

0 comments on commit 983780d

Please sign in to comment.