mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-02-11 19:11:50 +00:00
Some checks failed
hadolint dockerfiles / run-hadolint-on-dockerfiles (push) Has been cancelled
For gc proposal spec test
19 lines
495 B
Bash
19 lines
495 B
Bash
echo "Running finalize script..."
|
|
|
|
#
|
|
# Python Package Installation
|
|
#
|
|
echo "--- Installing Python Dependencies\n"
|
|
|
|
# Upgrade pip first
|
|
python3 -m pip install --no-cache-dir --break-system-packages --upgrade pip
|
|
# Install required packages
|
|
pip3 install --no-cache-dir --break-system-packages -r .devcontainer/requirements.txt
|
|
|
|
echo "--- Installing Ocaml stuff\n"
|
|
opam init --yes --shell-setup
|
|
eval $(opam env --switch=default)
|
|
opam install --yes dune menhir
|
|
|
|
echo "Finalize script completed. ✅"
|