Bump version (+ c++17 requirement note) #37
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
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/.ccws | |
- name: main | |
uses: actions/checkout@v4 | |
with: | |
path: "ccws/src/thread_supervisor" | |
- run: 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 dep_install PKG=thread_supervisor | |
- run: cd ccws; make thread_supervisor BUILD_PROFILE=scan_build |