staging: qcacld-3.0: Fix multiple build errors (IPA & nlink) #5
Workflow file for this run
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: Kernel Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| - '.gitignore' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Dependencies & Run Build | |
| env: | |
| TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }} | |
| TG_CHAT_ID: ${{ secrets.TG_CHAT_ID }} | |
| run: | | |
| # 1. Install Essential Dependencies | |
| # We ADD 'gcc-aarch64-linux-gnu' to fix the assembler error | |
| sudo apt-get update | |
| sudo apt-get install -y bc libssl-dev zip curl gcc-aarch64-linux-gnu | |
| # 2. Run your build script | |
| chmod +x build.sh | |
| bash build.sh | |