mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
add a version number to precompiled pyodide resources (#607)
This commit is contained in:
parent
d72f177be0
commit
5119ce92cb
@ -1,18 +1,26 @@
|
|||||||
|
# This number should be bumped up if making a non-additive change
|
||||||
|
# to python packages.
|
||||||
|
GRIST_PYODIDE_VERSION = 2
|
||||||
|
|
||||||
default:
|
default:
|
||||||
echo "Welcome to the pyodide sandbox"
|
echo "Welcome to the pyodide sandbox"
|
||||||
echo "make fetch_packages # gets python packages prepared earlier"
|
echo "make fetch_packages # gets python packages prepared earlier"
|
||||||
echo "make build_packages # build python packages from scratch"
|
echo "make build_packages # build python packages from scratch"
|
||||||
echo "make save_packages # upload python packages to fetch later"
|
echo "make save_packages # upload python packages to fetch later"
|
||||||
echo "setup # get pyodide node package"
|
echo "make clean_packages # remove local cache of python packages"
|
||||||
|
echo "setup # get pyodide node package, and python packages"
|
||||||
|
|
||||||
fetch_packages:
|
fetch_packages:
|
||||||
node ./packages.js https://s3.amazonaws.com/grist-pynbox/pyodide/packages/ _build/packages/
|
node ./packages.js https://s3.amazonaws.com/grist-pynbox/pyodide/packages/v$(GRIST_PYODIDE_VERSION)/ _build/packages/
|
||||||
|
|
||||||
build_packages:
|
build_packages:
|
||||||
./build_packages.sh
|
./build_packages.sh
|
||||||
|
|
||||||
save_packages:
|
save_packages:
|
||||||
aws s3 sync _build/packages s3://grist-pynbox/pyodide/packages/
|
aws s3 sync _build/packages s3://grist-pynbox/pyodide/packages/v$(GRIST_PYODIDE_VERSION)
|
||||||
|
|
||||||
|
clean_packages:
|
||||||
|
rm -rf _build/packages
|
||||||
|
|
||||||
setup:
|
setup:
|
||||||
./setup.sh
|
./setup.sh
|
||||||
|
0
sandbox/pyodide/build_packages.sh
Normal file → Executable file
0
sandbox/pyodide/build_packages.sh
Normal file → Executable file
Loading…
Reference in New Issue
Block a user