From 066d1e83ed7a1c08f355e1cb3ce05a3c4f60816a Mon Sep 17 00:00:00 2001 From: Roman Cattaneo <> Date: Mon, 6 Jan 2025 08:53:03 +0100 Subject: [PATCH] CI (verilator): Checkout submodules with GH action Configure the `actions/checkout` to fetch submodules recursively instead of adding a separate step doing the same manually. --- .github/workflows/verilator_compatibility.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verilator_compatibility.yml b/.github/workflows/verilator_compatibility.yml index e637fa716e..67f60a855a 100644 --- a/.github/workflows/verilator_compatibility.yml +++ b/.github/workflows/verilator_compatibility.yml @@ -18,8 +18,8 @@ jobs: - name: trigger reason run: echo "Trigger Reason:" ${{ github.event.inputs.reason }} - uses: actions/checkout@v4 - - name: checkout submodules - run: git submodule update --init --recursive + with: + submodules: 'recursive' - name: install apt packages run: sudo apt-get update && sudo apt-get -y install git make autoconf g++ flex bison libfl2 libfl-dev - name: compile verilator