Skip to content

Commit

Permalink
Add new sim
Browse files Browse the repository at this point in the history
Signed-off-by: Ryszard Rozak <[email protected]>
  • Loading branch information
RRozak authored and AdamOlech committed Dec 18, 2024
1 parent 68b606a commit 3f544c2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,30 @@ jobs:
make install-uvm
source activate.sh
make tests
another_tests:
name: Another
runs-on: [ self-hosted, Linux, X64, gcp-custom-runners ]
container: centos:8
env:
GHA_EXTERNAL_DISK: additional-tools
steps:
- name: Install dependencies
run: |
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
yum update -y
yum install -y git tar wget libnsl bc time make gcc gcc-c++ perl python3 python3-pip zlib-devel \
openssl-devel xz-devel sqlite-devel libffi-devel ncurses-devel bzip2-devel
- name: Setup repository
uses: actions/checkout@v4

- name: Get Submodules
run: git submodule update --init --recursive

- name: Install Pyenv
run: ./install.sh

- name: Run Tests
run: _secret_run_i3c_tests
3 changes: 3 additions & 0 deletions verification/cocotb/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ def _verify(session, test_group, test_type, test_name, coverage=None, simulator=
f"+verilator+seed+{seed}",
]

if not simulator:
simulator = os.getenv("SIMULATOR")

with open(test.paths["log_default"], "w") as test_log:

args = [
Expand Down

0 comments on commit 3f544c2

Please sign in to comment.