Skip to content

Update pipeline, static checks #30

Update pipeline, static checks

Update pipeline, static checks #30

Workflow file for this run

on: [push, pull_request]
env:
APT_INSTALL: sudo apt install -y --no-install-recommends
jobs:
focal_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- run: make install_ubuntu_test_deps
- run: make test
jammy_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: make install_ubuntu_test_deps
- run: make test
deb:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- run: make deb_install_deps
- run: make deb_any
- run: sudo dpkg -i build/thread_supervisor-*-any.deb
ccws:
runs-on: ubuntu-22.04
steps:
- name: ccws
uses: actions/checkout@v4
with:
repository: "asherikov/ccws"
path: "ccws"
- run: mkdir -p ccws/src
- name: main
uses: actions/checkout@v4
with:
path: "ccws/src/thread_supervisor"
- echo 'set(thread_supervisor_TESTS "ON" CACHE STRING "" FORCE)' > "ccws/src/.ccws/toolchain.cmake"

Check failure on line 49 in .github/workflows/master.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/master.yml

Invalid workflow file

The workflow is not valid. .github/workflows/master.yml (Line: 49, Col: 15): Unexpected value 'echo 'set(thread_supervisor_TESTS "ON" CACHE STRING "" FORCE)' > "ccws/src/.ccws/toolchain.cmake"'
- run: cd ccws; make bp_install_build BUILD_PROFILE=static_checks
- run: cd ccws; make bp_install_build BUILD_PROFILE=scan_build
- run: cd ccws; make BUILD_PROFILE=static_checks
- run: cd ccws; make BUILD_PROFILE=scan_build