RSDK-4275 Handle construct_resource
errors in module service
#408
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: pull_request | |
jobs: | |
run-tests: | |
if: github.repository_owner == 'viamrobotics' | |
runs-on: [self-hosted, x64] | |
container: | |
image: ghcr.io/viamrobotics/canon:amd64 | |
steps: | |
- uses: actions/checkout@v3 | |
########################################### | |
# necessary installs for building # | |
########################################### | |
- name: build-docker-test | |
run: | | |
docker build -t cpp . -f etc/docker/tests/Dockerfile.debian.bullseye | |
docker run --rm -i -w /tmp cpp /bin/bash |