bin/system: refactor distro logo lookup #112
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 | |
| on: | |
| push: | |
| branches: [ ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Run the build process inside Docker container | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: wltjr/docker-efl:latest | |
| options: | | |
| -e SONAR_TOKEN=${{ secrets.SONAR_TOKEN }} | |
| --privileged | |
| -v ${{ github.workspace }}:/tmp/entrance | |
| run: | | |
| cd /tmp/entrance | |
| meson setup --prefix /usr --buildtype=debug -Dpam=true -Dlogind=true . build | |
| build-wrapper-linux-x86-64 --out-dir bw-output ninja -C build | |
| ninja -C build install | |
| ./tests/run-tests.sh | |
| cd build ; find . -name '*.gcno' -exec sh -c 'gcov -b -p {} -o $(dirname {})' \;; cd ../ | |
| export PATH="/sonar-scanner-linux-x64/bin:${PATH}"; sonar-scanner |