Skip to content

Commit

Permalink
Add CI (#14)
Browse files Browse the repository at this point in the history
* initial add for the CI

* change the cloning to be by https rather than the ssh

* update CI with download docker step

* disable generate html coverage file

* remove merge_cov from repo and move it to the EF_UVM repo

* CI add passing/failing criteria

* CI remove clean all passed

* CI add passing/failing criteria
  • Loading branch information
M0stafaRady authored Feb 20, 2024
1 parent e768ecb commit a88be1e
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 11 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/uvm_ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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 run
run: |
cd verify/uvm-python
passed_count=$(find sim/default_tag -type f -name 'passed' | wc -l)
failed_count=$(find sim/default_tag -type f -name 'failed' | wc -l)
unknown_count=$(find sim/default_tag -type f -name 'unknown' | wc -l)
echo "Passed: $passed_count"
echo "Failed: $failed_count"
echo "Unknown: $unknown_count"
if [ "$passed_count" -eq 0 ]; then
echo "Error: No passed test results found"
exit 1
elif [ "$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
2 changes: 1 addition & 1 deletion verify/uvm-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ REPO_DIR := EF_UVM

clone_ef_uvm := $(shell if [ ! -d "$(REPO_DIR)" ]; then \
echo "Cloning the EF_UVM repository..."; \
git clone git@github.com:M0stafaRady/EF_UVM.git; \
git clone https://github.com/M0stafaRady/EF_UVM.git; \
fi;)


Expand Down
10 changes: 0 additions & 10 deletions verify/uvm-python/merge_cov.py

This file was deleted.

0 comments on commit a88be1e

Please sign in to comment.