Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,22 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgpiod-dev liblgpio-dev

- name: Install Renode (Linux)
if: runner.os == 'Linux'
run: |
wget https://github.com/renode/renode/releases/download/v1.16.1/renode_1.16.1_amd64.deb -O /tmp/renode.deb
sudo apt-get install -y /tmp/renode.deb

Comment thread
mangelajo marked this conversation as resolved.
- name: Install Qemu (macOS)
if: runner.os == 'macOS'
run: |
brew install qemu

- name: Install Renode (macOS)
if: runner.os == 'macOS'
run: |
brew install renode/tap/renode

Comment on lines +87 to +91
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- name: Install Renode (macOS)
if: runner.os == 'macOS'
run: |
brew install renode/tap/renode
# NOTE: not testing renode on macOS, as the install rebuilds renode and it is too slow.
# - name: Install Renode (macOS)
# if: runner.os == 'macOS'
# run: |
# brew install renode/tap/renode

- name: Cache Fedora Cloud images
id: cache-fedora-cloud-images
uses: actions/cache@v5
Expand Down
Loading
Loading