You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be possible to make a CI pipeline for vortex-auv-embedded which tests if the code can build. See below for an example. Obviously needs to be configured for the file structure of the repository.
Suggested Workflow
Example template:
name: Makefile CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure
- name: Install dependencies
run: make
- name: Run check
run: make check
- name: Run distcheck
run: make distcheck
Description of task
Should be possible to make a CI pipeline for vortex-auv-embedded which tests if the code can build. See below for an example. Obviously needs to be configured for the file structure of the repository.
Suggested Workflow
Example template:
Contacts
@kluge7