Skip to content

Commit 0053da7

Browse files
committed
Update ci
1 parent c4f0051 commit 0053da7

File tree

6 files changed

+68
-0
lines changed

6 files changed

+68
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#! /usr/bin/env bash
2+
3+
set -o errexit
4+
set -o xtrace
5+
6+
pwd
7+
8+
uv sync --all-groups
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

.github/workflow-scripts/04-run-analysis-scripts.sh

Whitespace-only changes.

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)