fb-oomd: fix silent EACCES on user.* xattr writes #190
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: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build and test repo | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - cc: gcc | |
| cxx: g++ | |
| - cc: clang | |
| cxx: clang++ | |
| - cc: clang | |
| cxx: clang++ | |
| cxxflags: -fsanitize=address -g | |
| env: | |
| CC: ${{ matrix.cc }} | |
| CXX: ${{ matrix.cxx }} | |
| CXXFLAGS: ${{ matrix.cxxflags }} | |
| steps: | |
| - run: sudo apt-get update | |
| - name: Install dependencies | |
| run: > | |
| sudo apt-get install | |
| pkg-config | |
| libsystemd-dev | |
| libjsoncpp-dev | |
| googletest | |
| meson | |
| g++ | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - run: meson build/ | |
| - run: ninja -C build/ | |
| - run: ninja -C build/ test |