Fix requirements by Ratko Pilipović

This commit is contained in:
Gašper Fele-Žorž 2025-09-02 10:46:21 +02:00
parent 79293545d3
commit c15d6f1edf
11 changed files with 64 additions and 5 deletions

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_os_family == 'Windows'
- import_tasks: main_lin.yml
when: ansible_os_family == 'Debian'

View file

@ -0,0 +1,4 @@
- name: Install Icarus
apt:
name: iverilog
state: latest

View file

@ -0,0 +1,6 @@
- name: Install Icarus Verilog
win_chocolatey:
name: iverilog
version: '11.0'
source: http://internal/odata/repo
state: present