Skip to content

Commit

Permalink
Merge pull request #183 from ultima-ib/frtb_pyengine
Browse files Browse the repository at this point in the history
CI fixes openssl and win x86
AnatolyBuga authored Dec 23, 2023
2 parents f449ffe + 8ff6d43 commit 1751da9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,13 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}


# This should help with OpenSSL
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install -y curl mysql-client mysql-server
- name: Install Node
run: npm install
working-directory: frontend
@@ -66,10 +72,18 @@ jobs:
architecture: ${{ matrix.target }}

- name: Install OpenSSL (Windows)
if: matrix.target == 'x64'
shell: powershell
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
- name: Install OpenSSL (Windows)
if: matrix.target == 'x86'
shell: powershell
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x86-windows-static-md
- name: Install Node
run: npm install

0 comments on commit 1751da9

Please sign in to comment.