Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit d006407

Browse files
committed
Removed unnecessary arguments to multibuild functions
1 parent 00f6624 commit d006407

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ echo "::group::Install a virtualenv"
2929
echo "::endgroup::"
3030

3131
echo "::group::Build wheel"
32-
clean_code $REPO_DIR $BUILD_COMMIT
33-
build_wheel $REPO_DIR $PLAT
32+
clean_code
33+
build_wheel
3434
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
3535
echo "::endgroup::"
3636

3737
if [[ $MACOSX_DEPLOYMENT_TARGET != "11.0" ]]; then
3838
echo "::group::Test wheel"
39-
install_run $PLAT
39+
install_run
4040
echo "::endgroup::"
4141
fi

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ before_install:
4141

4242
install:
4343
# Maybe get and clean and patch source
44-
- clean_code $REPO_DIR $BUILD_COMMIT
45-
- build_wheel $REPO_DIR $PLAT
44+
- clean_code
45+
- build_wheel
4646
- ls -l "${TRAVIS_BUILD_DIR}/${WHEEL_SDIR}/"
4747

4848
script:
49-
- install_run $PLAT
49+
- install_run
5050

5151
# Upload wheels to GitHub Releases
5252
deploy:

0 commit comments

Comments
 (0)