File tree Expand file tree Collapse file tree 6 files changed +68
-0
lines changed
Expand file tree Collapse file tree 6 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -o errexit
4+ set -o xtrace
5+
6+ pwd
7+
8+ df -h .
9+ df -h
10+
11+ if command -v docker > /dev/null; then
12+ docker images
13+ fi
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -o errexit
4+ set -o xtrace
5+
6+ pwd
7+
8+ uv sync --all-groups
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -o errexit
4+ set -o xtrace
5+
6+ pwd
7+
8+ wget " https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AD-AqaxhxH4kW0vv0DrE-w4/rosbags.tar.zst?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/rosbags.tar.zst
9+
10+ # Determine whether we're downloading the right file from Dropbox. Use a fast,
11+ # non-cryptographic hash since we're not super concerned about adversarial
12+ # attacks.
13+ xxhsum -c <<< " XXH3 (data/fluentrobotics/rosbags.tar.zst) = b703a5104c2b1153"
14+
15+ wget " https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AHgrJXzVImt_YWvJnkL1QUo/XXHSUMS.txt?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/XXHSUMS.txt
16+ xxhsum -c <<< " XXH3 (data/fluentrobotics/XXHSUMS.txt) = e52ca92e304edfb2"
17+
18+ wget " https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AKt7l10Z8Zz3l3VlJnEi5Ec/data-association.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/data-association.csv
19+ xxhsum -c <<< " XXH3 (data/fluentrobotics/data-association.csv) = 6c4577d709e1d3be"
20+
21+ wget " https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AA4Uq4EipmKnswCGw-L9lZQ/qualtrics.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/qualtrics.csv
22+ xxhsum -c <<< " XXH3 (data/fluentrobotics/qualtrics.csv) = 4fd5fa5d5a61779f"
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -o errexit
4+ set -o xtrace
5+
6+ pwd
7+
8+ cd data/fluentrobotics
9+ pwd
10+
11+ tar xf rosbags.tar.zst
12+ xxhsum -cq XXHSUMS.txt
Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ workflow_dispatch :
6+
7+ jobs :
8+ check-disk-usage :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ - name : Check Disk Usage
13+ run : bash .github/workflow-scripts/00-check-disk-usage.sh
You can’t perform that action at this time.
0 commit comments