Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
saleh-mir committed Jan 4, 2025
1 parent d30e6b2 commit 3f313d8
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ jobs:
~/.local/ta-lib/lib
~/.local/ta-lib/include
key: talib-cache-v0.4.0
- name: Setup Windows Build Tools
if: runner.os == 'Windows'
uses: microsoft/[email protected]

- name: Install Visual Studio Build Tools
if: runner.os == 'Windows'
run: |
curl -L -o vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe
vs_buildtools.exe --quiet --wait --norestart --nocache --installPath "C:\BuildTools" --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64
- name: Install ta-lib Windows
if: runner.os == 'Windows'
shell: cmd
Expand All @@ -70,13 +80,9 @@ jobs:
7z x ta-lib.zip
xcopy /E /I ta-lib\* C:\ta-lib\
cd C:\ta-lib\c\make\cdr\win32\msvc
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64
call "C:\BuildTools\VC\Auxiliary\Build\vcvars64.bat"
nmake
- name: Setup Windows Build Tools
if: runner.os == 'Windows'
uses: microsoft/[email protected]

- name: Install ta-lib macOS
if: runner.os == 'macOS'
run: |
Expand Down

0 comments on commit 3f313d8

Please sign in to comment.