From ef350be63be3dcd5ae8c123ae9fee525db025271 Mon Sep 17 00:00:00 2001 From: Sean Young Date: Thu, 9 Jun 2022 08:33:08 +0100 Subject: [PATCH] Submodules are now required to run tests (#866) Signed-off-by: Sean Young --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8d79b092..fa36347b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: recursive - run: git clone --depth 1 --branch solana-rustc/13.0-2021-08-08 https://github.com/solana-labs/llvm-project.git - name: Install Ninja uses: llvm/actions/install-ninja@main @@ -54,6 +56,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: recursive - run: git clone --depth 1 --branch solana-rustc/13.0-2021-08-08 https://github.com/solana-labs/llvm-project.git - run: cmake -G Ninja -DLLVM_ENABLE_ASSERTIONS=On -DLLVM_ENABLE_TERMINFO=Off -DLLVM_ENABLE_LIBXML2=Off -DLLVM_ENABLE_ZLIB=Off @@ -93,6 +97,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: recursive - run: git clone --depth 1 --branch solana-rustc/13.0-2021-08-08 https://github.com/solana-labs/llvm-project.git # We may not have enough space to compile llvm, see https://github.com/actions/virtual-environments/issues/326 working-directory: C:\ @@ -138,6 +144,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + submodules: recursive - run: git clone --depth 1 --branch solana-rustc/13.0-2021-08-08 https://github.com/solana-labs/llvm-project.git - name: Install Ninja uses: llvm/actions/install-ninja@main @@ -182,6 +190,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + submodules: recursive - run: git clone --depth 1 --branch solana-rustc/13.0-2021-08-08 https://github.com/solana-labs/llvm-project.git - name: Install Ninja uses: llvm/actions/install-ninja@main