From f4ced18a467dd9788959b2d5ced720be08a03500 Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Mon, 5 Sep 2022 13:14:27 -0600 Subject: [PATCH] Adjust workflows to handle lib/xtra as a submodule. --- .github/workflows/test-linux-build.yaml | 4 ++++ .github/workflows/test-mac-build.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/test-linux-build.yaml b/.github/workflows/test-linux-build.yaml index ad33ac531..670288d95 100644 --- a/.github/workflows/test-linux-build.yaml +++ b/.github/workflows/test-linux-build.yaml @@ -20,6 +20,8 @@ jobs: steps: - name: Clone Project uses: actions/checkout@v2 + with: + submodules: true # Requires automake, autoconf, and autoconf-archive; install those via # apt-get. @@ -55,6 +57,8 @@ jobs: steps: - name: Clone Project uses: actions/checkout@v2 + with: + submodules: true # Requires automake, autoconf, autoconf-archive and, unless building the # 1.6.2 version, nkf; install those via apt-get. diff --git a/.github/workflows/test-mac-build.yaml b/.github/workflows/test-mac-build.yaml index cac55210d..dd158467e 100644 --- a/.github/workflows/test-mac-build.yaml +++ b/.github/workflows/test-mac-build.yaml @@ -31,6 +31,8 @@ jobs: steps: - name: Clone Project uses: actions/checkout@v2 + with: + submodules: true # Requires automake and autoconf; install those via homebrew (available # by default). @@ -105,6 +107,8 @@ jobs: steps: - name: Clone Project uses: actions/checkout@v2 + with: + submodules: true # Requires automake, autoconf, and, unless building the 1.6.2 version, # nkf; install those via homebrew (available by default). -- 2.11.0