Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Build Tests
name: Full Install & Build Tests

on:
push:
branches:
- master
pull_request:
branches:
- "*"
- '**' # double asterisk matches any branch
types: [opened, synchronize, reopened]

jobs:
build:
Expand All @@ -30,15 +31,20 @@ jobs:
restore-keys: |
${{ runner.os }}-apt-

- name: Install Dependencies
- name: Install Base Dependencies
run: |
sudo apt-get update && sudo apt-get upgrade -y
# Install dependencies listed in dependencies.txt
# Make sure dependencies.txt is at the root of your repo or update the path accordingly
xargs -a dependencies.txt sudo apt-get install -y
sudo apt-get update && apt-get install -y --no-install-recommends \
curl gnupg2 lsb-release software-properties-common \
locales \
git \
x11-apps \
mesa-utils \
gettext-base

# Install additional ROS packages
sudo apt-get install -y ros-jazzy-ament-cmake-clang-format ros-jazzy-joint-state-publisher-gui ros-jazzy-xacro ros-jazzy-mcap-vendor ros-jazzy-interactive-markers
- name: Install Project Dependencies
run: |
envsubst < dependencies.txt | xargs sudo apt-get install -y --no-install-recommends

- name: Initialize submodules
run: |
Expand Down