Localized file check-in by OneLocBuild Task: Build definition ID 14411: Build ID 13329663 #208
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
| # yamllint disable rule:line-length rule:document-start rule:truthy | |
| name: Linux Build Verification | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| linux-build: | |
| name: Verify Linux Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Check system dependencies | |
| run: | | |
| set -ex | |
| ./system-dependencies.sh | |
| - name: Build on Linux | |
| run: | | |
| set -ex | |
| make -j$(nproc) |