Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS authored Dec 26, 2024
1 parent 82dea33 commit ec1702a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ configuration:
branches:
only:
- master
- ci/test
# - ci/test

environment:
matrix:
Expand Down
13 changes: 11 additions & 2 deletions .ci/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash


echo 219
echo 220

ARCH=$(uname -m)

Expand Down Expand Up @@ -35,7 +35,16 @@ pip install pytest numpy pandas scipy scikit-learn psutil cloudpickle
cd $GITHUB_WORKSPACE/.ci
git clone --recursive -b docs/install-py https://github.com/microsoft/LightGBM.git
cd LightGBM
sh ./build-python.sh install --sanitizers="address;undefined" --debug
sh ./build-python.sh bdist_wheel

cd ../dist
pip install \
--force-reinstall \
--no-cache-dir \
--no-deps \
--find-links=. \
lightgbm-4.5.0.99-py3-none-macosx_13_0_x86_64.whl
cd ../


pytest $GITHUB_WORKSPACE/tests/python_package_test || exit 1
2 changes: 1 addition & 1 deletion .github/workflows/python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- master
# - ci/test
- ci/test

# automatically cancel in-progress builds if another commit is pushed
concurrency:
Expand Down

0 comments on commit ec1702a

Please sign in to comment.