fix(linux): Update ICSSM FAQ on how to address low performance #370
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: "build" | |
| on: | |
| push: | |
| branches: [master] | |
| concurrency: | |
| group: ${{ github.ref_name }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| collect: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/texasinstruments/processor-sdk-doc:latest | |
| options: --entrypoint /bin/bash | |
| permissions: | |
| contents: read | |
| outputs: | |
| build-matrix: "${{ steps.matrix.outputs.matrix }}" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create build matrix | |
| id: matrix | |
| run: | | |
| ./bin/build_matrix.py | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/texasinstruments/processor-sdk-doc:latest | |
| options: --entrypoint /bin/bash | |
| permissions: | |
| contents: read | |
| needs: collect | |
| strategy: | |
| matrix: | |
| include: "${{ fromJSON(needs.collect.outputs.build-matrix) }}" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Add directory to safe dir overrides | |
| run: | | |
| git config --global --add safe.directory "$PWD" | |
| - name: Build ${{ matrix.device }} | |
| run: | | |
| make DEVFAMILY=${{ matrix.device }} OS=${{ matrix.os }} \ | |
| VERSION=${{ github.ref_name }} | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.device }}-${{ matrix.os }} | |
| path: build/ | |
| retention-days: 1 |