Browse Source

Use tmp dir to free up disk space on /tmp

tags/v0.3.5-rc0
haixuanTao 1 year ago
parent
commit
fe8722b7f5
1 changed files with 3 additions and 9 deletions
  1. +3
    -9
      .github/workflows/ci.yml

+ 3
- 9
.github/workflows/ci.yml View File

@@ -318,15 +318,9 @@ jobs:
dora start dataflow.yml --name ci-python-test
sleep 10
dora stop --name ci-python-test --grace-duration 5s
cd ..
if [ ! -d "examples/.env/bin" ]; then # Reuse Example venv
mv examples/.env/Scripts examples/.env/bin # venv is placed under `Scripts` on Windows
fi
source examples/.env/bin/activate
dora destroy # Restart the daemon with the current virtual environment
dora up
dora start examples/python-dataflow/dataflow_dynamic.yml --name ci-python-dynamic
python examples/python-dataflow/plot_dynamic.py
pip install -r ../examples/python-dataflow/requirements.txt --cache-dir=.
dora start ../examples/python-dataflow/dataflow_dynamic.yml --name ci-python-dynamic
python ../examples/python-dataflow/plot_dynamic.py
sleep 5
dora stop --name ci-python-test --grace-duration 5s
dora destroy


Loading…
Cancel
Save