diff options
author | Alon Zakai <azakai@google.com> | 2022-05-04 09:12:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 16:12:45 +0000 |
commit | ef4011c665f225f895861ce555c9347eb505c89f (patch) | |
tree | cbd10800b6e63e23517aeb554ee5177fafca6bd8 | |
parent | 4bcfba261cb8ee182261d26064453cab787d0df4 (diff) | |
download | binaryen-ef4011c665f225f895861ce555c9347eb505c89f.tar.gz binaryen-ef4011c665f225f895861ce555c9347eb505c89f.tar.bz2 binaryen-ef4011c665f225f895861ce555c9347eb505c89f.zip |
Setup git submodules so googletest is fetched, unbreaking alpine in releases (#4640)
Without this the CMake step fails on not finding
googletest/googletest/src/gtest_main.cc
Fixes #4639
-rw-r--r-- | .github/workflows/create_release.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index eb64080ad..7049549fc 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -111,6 +111,8 @@ jobs: with: python-version: '3.x' - uses: actions/checkout@v1 + with: + submodules: true - name: start docker run: | docker run -w /src -dit --name alpine -v $PWD:/src node:lts-alpine |