rc-service: print name of command on exec failure #1624
This file contains hidden or 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: ci_ubuntu | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu: | |
| name: Ubuntu | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| compiler: | |
| - gcc | |
| - clang | |
| env: | |
| CC: ${{ matrix.compiler }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: sudo apt-get update -q | |
| - run: sudo apt-get install -q -y build-essential libpam-dev meson libcap-dev ${CC} | |
| - run: meson setup builddir/ | |
| - run: ninja -C builddir | |
| - run: ninja test --verbose -C builddir |