1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-15 00:36:55 +08:00

Update Action

This commit is contained in:
wangwenxi-handsome
2021-07-23 18:25:24 +08:00
committed by wangwenxi.handsome
parent a8ea66b83e
commit 4ffb05ae59
2 changed files with 53 additions and 40 deletions

View File

@@ -36,36 +36,36 @@ jobs:
shell: bash shell: bash
# Test Qlib installed with pip # Test Qlib installed with pip
- name: Install Qlib with pip # - name: Install Qlib with pip
run: | # run: |
if [ "$RUNNER_OS" == "Windows" ]; then # if [ "$RUNNER_OS" == "Windows" ]; then
$CONDA\\python.exe -m pip install numpy==1.19.5 # $CONDA\\python.exe -m pip install numpy==1.19.5
$CONDA\\python.exe -m pip install pyqlib --ignore-installed ruamel.yaml numpy --user # $CONDA\\python.exe -m pip install pyqlib --ignore-installed ruamel.yaml numpy --user
else # else
sudo $CONDA/bin/python -m pip install numpy==1.19.5 # sudo $CONDA/bin/python -m pip install numpy==1.19.5
sudo $CONDA/bin/python -m pip install pyqlib --ignore-installed ruamel.yaml numpy # sudo $CONDA/bin/python -m pip install pyqlib --ignore-installed ruamel.yaml numpy
fi # fi
shell: bash # shell: bash
- name: Test data downloads # - name: Test data downloads
run: | # run: |
if [ "$RUNNER_OS" == "Windows" ]; then # if [ "$RUNNER_OS" == "Windows" ]; then
$CONDA\\python.exe scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn # $CONDA\\python.exe scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
else # else
$CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn # $CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
fi # fi
shell: bash # shell: bash
- name: Test workflow by config (install from pip) # - name: Test workflow by config (install from pip)
run: | # run: |
if [ "$RUNNER_OS" == "Windows" ]; then # if [ "$RUNNER_OS" == "Windows" ]; then
$CONDA\\python.exe qlib\\workflow\\cli.py examples\\benchmarks\\LightGBM\\workflow_config_lightgbm_Alpha158.yaml # $CONDA\\python.exe qlib\\workflow\\cli.py examples\\benchmarks\\LightGBM\\workflow_config_lightgbm_Alpha158.yaml
$CONDA\\python.exe -m pip uninstall -y pyqlib # $CONDA\\python.exe -m pip uninstall -y pyqlib
else # else
$CONDA/bin/python qlib/workflow/cli.py examples/benchmarks/LightGBM/workflow_config_lightgbm_Alpha158.yaml # $CONDA/bin/python qlib/workflow/cli.py examples/benchmarks/LightGBM/workflow_config_lightgbm_Alpha158.yaml
sudo $CONDA/bin/python -m pip uninstall -y pyqlib # sudo $CONDA/bin/python -m pip uninstall -y pyqlib
fi # fi
shell: bash # shell: bash
# Test Qlib installed from source # Test Qlib installed from source
- name: Install Qlib from source - name: Install Qlib from source
@@ -83,6 +83,15 @@ jobs:
fi fi
shell: bash shell: bash
- name: Test data downloads
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
$CONDA\\python.exe scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
else
$CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
fi
shell: bash
- name: Install test dependencies - name: Install test dependencies
run: | run: |
if [ "$RUNNER_OS" == "Windows" ]; then if [ "$RUNNER_OS" == "Windows" ]; then

View File

@@ -30,24 +30,24 @@ jobs:
$CONDA/bin/python -m black qlib -l 120 --check --diff $CONDA/bin/python -m black qlib -l 120 --check --diff
# Test Qlib installed with pip # Test Qlib installed with pip
- name: Install Qlib with pip # - name: Install Qlib with pip
run: | # run: |
sudo $CONDA/bin/python -m pip install numpy==1.19.5 # sudo $CONDA/bin/python -m pip install numpy==1.19.5
sudo $CONDA/bin/python -m pip install pyqlib --ignore-installed ruamel.yaml numpy # sudo $CONDA/bin/python -m pip install pyqlib --ignore-installed ruamel.yaml numpy
- name: Install Lightgbm for MacOS - name: Install Lightgbm for MacOS
run: | run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Microsoft/qlib/main/.github/brew_install.sh)" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Microsoft/qlib/main/.github/brew_install.sh)"
HOMEBREW_NO_AUTO_UPDATE=1 brew install lightgbm HOMEBREW_NO_AUTO_UPDATE=1 brew install lightgbm
- name: Test data downloads # - name: Test data downloads
run: | # run: |
$CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn # $CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
- name: Test workflow by config (install from pip) # - name: Test workflow by config (install from pip)
run: | # run: |
$CONDA/bin/python qlib/workflow/cli.py examples/benchmarks/LightGBM/workflow_config_lightgbm_Alpha158.yaml # $CONDA/bin/python qlib/workflow/cli.py examples/benchmarks/LightGBM/workflow_config_lightgbm_Alpha158.yaml
sudo $CONDA/bin/python -m pip uninstall -y pyqlib # sudo $CONDA/bin/python -m pip uninstall -y pyqlib
# Test Qlib installed from source # Test Qlib installed from source
- name: Install Qlib from source - name: Install Qlib from source
@@ -57,6 +57,10 @@ jobs:
sudo $CONDA/bin/python -m pip install -U scipy scikit-learn # installing without this line will cause errors on GitHub Actions, while instsalling locally won't sudo $CONDA/bin/python -m pip install -U scipy scikit-learn # installing without this line will cause errors on GitHub Actions, while instsalling locally won't
sudo $CONDA/bin/python setup.py install sudo $CONDA/bin/python setup.py install
- name: Test data downloads
run: |
$CONDA/bin/python scripts/get_data.py qlib_data --target_dir ~/.qlib/qlib_data/cn_data --interval 1d --region cn
- name: Install test dependencies - name: Install test dependencies
run: | run: |
sudo $CONDA/bin/python -m pip install --upgrade pip sudo $CONDA/bin/python -m pip install --upgrade pip