Skip to content

Commit 73f358a

Browse files
authored
Merge branch 'main' into refactor_thruster_interface
2 parents c885753 + 690c74e commit 73f358a

File tree

28 files changed

+330
-1165
lines changed

28 files changed

+330
-1165
lines changed

.github/workflows/code-coverage.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Code Coverage
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
jobs:
10+
call_reusable_workflow:
11+
uses: vortexntnu/vortex-ci/.github/workflows/reusable-code-coverage.yml@main
12+
with:
13+
vcs-repo-file-url: './dependencies.repos'
14+
secrets:
15+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/simulator-test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Simulator Test
2+
on:
3+
push:
4+
branches:
5+
- main
6+
workflow_dispatch:
7+
schedule:
8+
- cron: '0 1 * * *' # Runs daily at 01:00 UTC
9+
jobs:
10+
call_reusable_workflow:
11+
strategy:
12+
matrix:
13+
test_script:
14+
- "tests/waypoint_navigation/simulator_test.sh"
15+
uses: vortexntnu/vortex-ci/.github/workflows/reusable-ros2-simulator-test.yml@main
16+
with:
17+
vcs_repos_file: "tests/dependencies.repos"
18+
setup_script: "tests/setup.sh"
19+
test_script: "${{ matrix.test_script }}"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Vortex-ASV
2+
[![Industrial CI](https://github.com/vortexntnu/vortex-asv/actions/workflows/industrial-ci.yml/badge.svg)](https://github.com/vortexntnu/vortex-asv/actions/workflows/industrial-ci.yml)
3+
[![Simulator Test](https://github.com/vortexntnu/vortex-asv/actions/workflows/simulator-test.yml/badge.svg)](https://github.com/vortexntnu/vortex-asv/actions/workflows/simulator-test.yml)
4+
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/vortexntnu/vortex-asv/main.svg)](https://results.pre-commit.ci/latest/github/vortexntnu/vortex-asv/main)
5+
[![codecov](https://codecov.io/github/vortexntnu/vortex-asv/graph/badge.svg?token=UERULMD5ES)](https://codecov.io/github/vortexntnu/vortex-asv)
6+
27
Vortex ASV software. Purpose built for competing in ASV competitions.
38

49
## Docker

acoustics/acoustics_data_record/CMakeLists.txt

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

acoustics/acoustics_data_record/README.md

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

acoustics/acoustics_data_record/acoustics_data/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

acoustics/acoustics_data_record/acoustics_data_record/__init__.py

Whitespace-only changes.

acoustics/acoustics_data_record/acoustics_data_record/acoustics_data_record_lib.py

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

acoustics/acoustics_data_record/acoustics_data_record/acoustics_data_record_node.py

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

acoustics/acoustics_data_record/launch/acoustics_data_record.launch.py

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

0 commit comments

Comments
 (0)