Skip to content

Commit 8030d52

Browse files
committed
Update ci
1 parent 870b41f commit 8030d52

File tree

2 files changed

+50
-17
lines changed

2 files changed

+50
-17
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#! /usr/bin/env bash
2+
3+
set -o errexit
4+
set -o xtrace
5+
6+
pwd
7+
8+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h1_objective_metrics success
9+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h1_objective_metrics time
10+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h1_objective_metrics acceleration
11+
12+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h2_subjective_metrics alpha
13+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h2_subjective_metrics warmth
14+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h2_subjective_metrics competence
15+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h2_subjective_metrics discomfort
16+
uv run -m fluentrobotics.icmpc_collab_transport.evaluation.h2_subjective_metrics fluency

.github/workflows/build.yml

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,48 @@
1-
name: build
1+
name: ci
22

33
on:
44
push:
55
workflow_dispatch:
66

77
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
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
2222

23-
build:
23+
ci:
2424
runs-on: ubuntu-latest
2525
container: ghcr.io/fluentrobotics/ros:humble
2626
steps:
2727
- uses: actions/checkout@v4
28-
- name: Test
28+
- name: Inspect workspace
2929
run: |
3030
pwd
3131
ls -lhF
32+
bash .github/workflow-scripts/00-check-disk-usage.sh
33+
- name: Install Dependencies
34+
run: |
35+
bash .github/workflow-scripts/01-install-dependencies.sh
36+
bash .github/workflow-scripts/00-check-disk-usage.sh
37+
- name: Download Dataset
38+
run: |
39+
bash .github/workflow-scripts/02-download-dataset.sh
40+
bash .github/workflow-scripts/00-check-disk-usage.sh
41+
- name: Extract Dataset
42+
run: |
43+
bash .github/workflow-scripts/03-extract-dataset.sh
44+
bash .github/workflow-scripts/00-check-disk-usage.sh
45+
- name: Run Analysis Scripts
46+
run: |
47+
bash .github/workflow-scripts/04-run-analysis-scripts.sh
48+
bash .github/workflow-scripts/00-check-disk-usage.sh

0 commit comments

Comments
 (0)