qcom: msm8909/apq8009: introduce msm8909+pm8916 dts and audio enablement #981
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, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: [arm64, arm] | |
| compiler: [gcc, clang] | |
| env: | |
| ARCH: ${{ matrix.arch }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: jirutka/setup-alpine@v1 | |
| - name: Prepare build environment | |
| run: ./.ci-prepare.sh ${{ matrix.compiler }} | |
| shell: alpine.sh --root {0} | |
| - name: Build | |
| run: ./.ci-build.sh | |
| shell: alpine.sh {0} |