v3.7.0-4826-g372b3a9b8da2: nxp weekly report #1396
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
# Copyright (c) 2020 Intel Corporation | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Check Results | |
# Either a daily based on schedule/cron or only on tag push | |
on: pull_request | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
# - name: install-pkgs | |
#run: | | |
# sudo apt-get install -y ninja-build doxygen | |
- name: cache-pip | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-test-pip | |
- name: install-pip | |
run: | | |
pip3 install wheel setuptools GitPython | |
pip3 install junit2html | |
- id: file_changes | |
uses: trilom/[email protected] | |
with: | |
output: 'json' | |
- name: Check results | |
id: results | |
run: | | |
latest=$(scripts/version_mgr.py -L) | |
echo ::set-output name=version::${latest}; | |
echo "Latest is ${latest}"; | |
# check if we have the board already, just in case, WIP | |
for file in `cat $HOME/files_added.json | jq -r '.[] '`; do | |
if [[ ${file} == results/*sanitycheck* ]]; then | |
echo "File ${file} not allowed." | |
exit 1 | |
fi | |
if [[ ${file} == results/* ]]; then | |
echo "Verifying content of ${file}" | |
fd=$(dirname $file) | |
v=$(basename $fd) | |
max_size=10 | |
max_err=500 | |
echo "python3 scripts/results_verification.py -Z ${v} -P ./${file} -E ${max_err} -F ${max_err} -S ${max_size}" | |
python3 scripts/results_verification.py -Z ${v} -P ./${file} -E ${max_err} -F ${max_err} -S ${max_size} | |
if [ $? -eq 0 ] | |
then | |
echo "Results file succesfully verified" | |
else | |
echo "Results file verification failed" | |
exit 1 | |
fi | |
fi | |
if [[ ${file} == results/* ]]; then | |
echo "Checking ${file}" | |
~/.local/bin/junit2html --summary-matrix ${file} | |
fi | |
done | |
# verify matching test spec | |
# verify version | |
# etc. | |