Summary
Add CI hook to automatically update the version of tesseract-core cloned for the example Tesseract, ie. in tesseract-streamlit/examples/vectoradd_jax/run.sh:
git clone --depth 1 --branch v0.9.0 https://github.com/pasteurlabs/tesseract-core.git "${tmpdir}/tesseract-core"
the -branch v0.9.0 should be edited in-place by a GHA weekly, along with the dependency bumps which already occur.
This example script should then be run as an e2e test to ensure compatibility of the example script.
Why is this needed?
Breaking changes since version 0.9.0 prevent this example from currently working ootb.
Summary
Add CI hook to automatically update the version of
tesseract-corecloned for the example Tesseract, ie. intesseract-streamlit/examples/vectoradd_jax/run.sh:git clone --depth 1 --branch v0.9.0 https://github.com/pasteurlabs/tesseract-core.git "${tmpdir}/tesseract-core"the
-branch v0.9.0should be edited in-place by a GHA weekly, along with the dependency bumps which already occur.This example script should then be run as an e2e test to ensure compatibility of the example script.
Why is this needed?
Breaking changes since version 0.9.0 prevent this example from currently working ootb.