Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Commit

Permalink
fix CWD
Browse files Browse the repository at this point in the history
  • Loading branch information
hadusam committed Mar 26, 2020
1 parent 749e828 commit 3969633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildkite/blueoil-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ steps:
do
echo \${TEST_CASE}
cd tmp/\${TEST_CASE}/export/*/*/output/python
pip3 install -r requirements.txt --no-cache-dir
pip3 install -r requirements.txt
python3 run.py -i ../../inference_test_data/raw_image.png -c ../models/meta.yaml -m ../models/lib/libdlk_aarch64.so
cd \$(CWD)
cd \${CWD}
done
label: "inference on raspberry-pi"
depends_on:
Expand All @@ -103,7 +103,7 @@ steps:
sudo pip install -r requirements.txt --no-cache-dir
sudo python run.py -i ../../inference_test_data/raw_image.png -c ../models/meta.yaml -m ../models/lib/libdlk_arm.so
sudo chown -R buildkite-agent:buildkite-agent output
cd \$(CWD)
cd \${CWD}
done
label: "inference on de10nano"
depends_on:
Expand Down

0 comments on commit 3969633

Please sign in to comment.