Merge branch 'uvm-ci' into uvm-ci-rtl-updates #12
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
name: Run UVM all tests | |
on: | |
push: # This now triggers on pushes to any branch | |
pull_request: # This now triggers on pull requests to any branch | |
jobs: | |
test_and_clean: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: download docker | |
run: | | |
docker pull efabless/dv:cocotb | |
- name: Navigate to verify/uvm-python and run tests | |
run: | | |
cd verify/uvm-python | |
make run_all_tests RUN_MERGE_COVERAGE=false | |
- name: Check for test results in sim/default_run | |
run: | | |
cd verify/uvm-python | |
passed_count=$(find sim/default_run -type f -name 'passed' | wc -l) | |
failed_count=$(find sim/default_run -type f -name 'failed' | wc -l) | |
unknown_count=$(find sim/default_run -type f -name 'unknown' | wc -l) | |
echo "Passed: $passed_count" | |
echo "Failed: $failed_count" | |
echo "Unknown: $unknown_count" | |
if [ "$failed_count" -ne 0 ] || [ "$unknown_count" -ne 0 ]; then | |
echo "Error: There are failed or unknown test results" | |
exit 1 | |
else | |
echo "All tests passed successfully" | |
fi | |