Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for removed submodule #15

Merged
merged 2 commits into from
Feb 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
# submodules prove problematic since .git is outside cibuildwheel's manylinux container
run: |
COMMIT=$(cat mypy_commit)
git clone --recurse-submodules https://github.com/python/mypy.git
git clone https://github.com/python/mypy.git
cd mypy
git checkout --force --recurse-submodules $COMMIT
git checkout $COMMIT
git submodule update --init --recursive
- name: Build wheels
env:
CIBW_BUILD: "cp${{ matrix.python-version }}-*"
Expand Down Expand Up @@ -96,9 +97,10 @@ jobs:
shell: bash
run: |
COMMIT=$(cat mypy_commit)
git clone --recurse-submodules https://github.com/python/mypy.git
git clone https://github.com/python/mypy.git
cd mypy
git checkout --force --recurse-submodules $COMMIT
git checkout $COMMIT
git submodule update --init --recursive
- name: Run check-manifest
run: |
cd mypy
Expand Down