Skip to content

Commit b6d2196

Browse files
committed
Update ci
1 parent 8030d52 commit b6d2196

File tree

3 files changed

+64
-52
lines changed

3 files changed

+64
-52
lines changed

.github/workflow-scripts/02-download-dataset.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,26 @@ set -o xtrace
55

66
pwd
77

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
8+
wget --no-verbose \
9+
-O data/fluentrobotics/rosbags.tar.zst \
10+
"https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AD-AqaxhxH4kW0vv0DrE-w4/rosbags.tar.zst?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1"
911

1012
# Determine whether we're downloading the right file from Dropbox. Use a fast,
1113
# non-cryptographic hash since we're not super concerned about adversarial
1214
# attacks.
1315
xxhsum -c <<< "XXH3 (data/fluentrobotics/rosbags.tar.zst) = b703a5104c2b1153"
1416

15-
wget "https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AHgrJXzVImt_YWvJnkL1QUo/XXHSUMS.txt?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/XXHSUMS.txt
17+
wget --no-verbose \
18+
-O data/fluentrobotics/XXHSUMS.txt \
19+
"https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AHgrJXzVImt_YWvJnkL1QUo/XXHSUMS.txt?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1"
1620
xxhsum -c <<< "XXH3 (data/fluentrobotics/XXHSUMS.txt) = e52ca92e304edfb2"
1721

18-
wget "https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AKt7l10Z8Zz3l3VlJnEi5Ec/data-association.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/data-association.csv
22+
wget --no-verbose \
23+
-O data/fluentrobotics/data-association.csv \
24+
"https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AKt7l10Z8Zz3l3VlJnEi5Ec/data-association.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1"
1925
xxhsum -c <<< "XXH3 (data/fluentrobotics/data-association.csv) = 6c4577d709e1d3be"
2026

21-
wget "https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AA4Uq4EipmKnswCGw-L9lZQ/qualtrics.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1" -O data/fluentrobotics/qualtrics.csv
27+
wget --no-verbose \
28+
-O data/fluentrobotics/qualtrics.csv \
29+
"https://www.dropbox.com/scl/fo/ruzihfyim9n5wx3kcluc6/AA4Uq4EipmKnswCGw-L9lZQ/qualtrics.csv?rlkey=u1d4pdei9jruil1bl4j0fxkmf&dl=1"
2230
xxhsum -c <<< "XXH3 (data/fluentrobotics/qualtrics.csv) = 4fd5fa5d5a61779f"

.github/workflows/build.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: ci
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
14+
# - name: Check things
15+
# run: |
16+
# sudo du -sh /usr/share/dotnet || true
17+
# sudo du -sh /usr/local/lib/android || true
18+
# sudo du -sh /opt/ghc || true
19+
# sudo du -sh /opt/hostedtoolcache/CodeQL || true
20+
# sudo du -sh /usr/share/miniconda || true
21+
# sudo du -sh /usr/local/share/vcpkg || true
22+
23+
ci:
24+
runs-on: ubuntu-latest
25+
container: ghcr.io/fluentrobotics/ros:humble
26+
steps:
27+
- name: Inspect ros
28+
run: |
29+
ls -lhF /opt/ros || true
30+
python3 -m rclpy || true
31+
# - uses: actions/checkout@v4
32+
# - name: Inspect workspace
33+
# run: |
34+
# pwd
35+
# ls -lhF
36+
# bash .github/workflow-scripts/00-check-disk-usage.sh
37+
# - name: Install Dependencies
38+
# run: |
39+
# bash .github/workflow-scripts/01-install-dependencies.sh
40+
# bash .github/workflow-scripts/00-check-disk-usage.sh
41+
# - name: Download Dataset
42+
# run: |
43+
# bash .github/workflow-scripts/02-download-dataset.sh
44+
# bash .github/workflow-scripts/00-check-disk-usage.sh
45+
# - name: Extract Dataset
46+
# run: |
47+
# bash .github/workflow-scripts/03-extract-dataset.sh
48+
# bash .github/workflow-scripts/00-check-disk-usage.sh
49+
# - name: Run Analysis Scripts
50+
# run: |
51+
# bash .github/workflow-scripts/04-run-analysis-scripts.sh
52+
# bash .github/workflow-scripts/00-check-disk-usage.sh

0 commit comments

Comments
 (0)