From b02444843f74a512b02ff26fb0cabf0889fae37e Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 30 Jul 2024 10:47:10 +0200 Subject: [PATCH] Install GHDL in MinGW64 and UCRT64. --- .github/workflows/Pipeline.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/Pipeline.yml b/.github/workflows/Pipeline.yml index 8ecb7284..379c6c9e 100644 --- a/.github/workflows/Pipeline.yml +++ b/.github/workflows/Pipeline.yml @@ -21,12 +21,19 @@ jobs: jobs: ${{ needs.UnitTestingParams.outputs.python_jobs }} apt: ghdl-mcode brew: ghdl + pacboy: ghdl ubuntu_before_script: | which ghdl ghdl version macos_before_script: | which ghdl ghdl version + mingw64_before_script: | + which ghdl + ghdl version + ucrt64_before_script: | + which ghdl + ghdl version # ubuntu_before_script: sudo install -m 755 tests/mock/ghdl /usr/local/bin requirements: "-r tests/unit/requirements.txt" unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}