From fab1b6eab99a64424c7b084e0bb840435c372cea Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Tue, 16 Jul 2024 07:08:52 -0700 Subject: [PATCH] Checkout submodules in install test action --- .github/workflows/install.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 4c2e36afd..31018d685 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -35,6 +35,8 @@ jobs: sudo apt-get clean &> /dev/null df -h - uses: actions/checkout@v4 + with: + submodules: recursive - name: install run: sudo ./bin/wally-tool-chain-install.sh - name: setup @@ -54,8 +56,6 @@ jobs: matrix: os: ["rockylinux:8", "almalinux:8"] steps: - - name: check distro - run: cat /etc/os-release - run: dnf install -y sudo - name: free up storage run: | @@ -66,6 +66,8 @@ jobs: sudo rm -rf /host/opt/hostedtoolcache/CodeQL &> /dev/null df -h - uses: actions/checkout@v4 + with: + submodules: recursive - name: install run: ./bin/wally-tool-chain-install.sh - name: setup