Skip to content

Commit

Permalink
replace sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
JinBridger committed Mar 4, 2024
1 parent e7d5f8d commit 1c1850e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/bigdl-build-portable-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ jobs:
with:
repository: 'python/cpython'
ref: '3.9'
- name: Replace with SQLite 3.45.1
# this is to fix security issue
# according to cpython, 3.9 is only accepting security patches
# so we need to manually replace it with sqlite 3.45.1
shell: bash
run: |
cd ./PCbuild
sed -i 's/sqlite-3.37.2.0/sqlite-3.45.1.0/g' get_externals.bat
sed -i 's/sqlite-3.37.2.0/sqlite-3.45.1.0/g' python.props
cd ..
- name: Build cpython
run: |
./Tools/msi/buildrelease.bat -x64 --skip-doc --skip-nuget --skip-msi
Expand Down

0 comments on commit 1c1850e

Please sign in to comment.