hook: use mali_lib_version for SONAME and library version #6
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 and Release Debian Package | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| inputs: | |
| commit_sha: | |
| description: 'Target commit SHA to build (full SHA recommended).' | |
| required: true | |
| type: string | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-release: | |
| name: Build and Release Debian Package | |
| # Run on arm64 hosted runner to avoid QEMU emulation slowness. | |
| runs-on: ubuntu-22.04-arm | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.commit_sha || github.sha }} | |
| - name: Fix Git Permissions | |
| run: | | |
| mkdir -p ~/.config/git | |
| chmod -R 700 ~/.config | |
| - name: Cache apt packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: /var/cache/apt/archives | |
| key: apt-${{ runner.arch }}-${{ hashFiles('.github/workflows/build.yml') }} | |
| restore-keys: apt-${{ runner.arch }}- | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| debhelper \ | |
| devscripts \ | |
| meson \ | |
| pkg-config \ | |
| libstdc++6 \ | |
| libgbm-dev \ | |
| libdrm-dev \ | |
| libx11-6 \ | |
| libx11-dev \ | |
| libx11-xcb1 \ | |
| libx11-xcb-dev \ | |
| libxcb-dri2-0 \ | |
| libxcb-dri2-0-dev \ | |
| libxcb-dri3-dev \ | |
| libxcb-present-dev \ | |
| libxcb-xfixes0-dev \ | |
| libxdamage1 \ | |
| libxdamage-dev \ | |
| libxext6 \ | |
| libxext-dev \ | |
| libxfixes3 \ | |
| libxfixes-dev \ | |
| libwayland-client0 \ | |
| libwayland-dev | |
| - name: Build Debian package | |
| run: | | |
| debuild -us -uc -b && cp -a ../*.deb ./ | |
| - name: Get version | |
| id: get_version | |
| run: | | |
| echo "version=$(dpkg-parsechangelog --show-field Version)" >> $GITHUB_OUTPUT | |
| - name: Get commit metadata | |
| id: get_commit_hash | |
| run: | | |
| echo "date=$(git show -s --format=%cd --date=format:%Y%m%d HEAD)" >> $GITHUB_OUTPUT | |
| echo "full=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
| echo "short=$(git rev-parse --short=7 HEAD)" >> $GITHUB_OUTPUT | |
| - name: Release | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: v${{ steps.get_version.outputs.version }}-${{ steps.get_commit_hash.outputs.date }}-${{ steps.get_commit_hash.outputs.short }} | |
| tag_name: v${{ steps.get_version.outputs.version }}-${{ steps.get_commit_hash.outputs.date }}-${{ steps.get_commit_hash.outputs.short }} | |
| generate_release_notes: true | |
| files: | | |
| ./*.deb | |
| - name: Release (workflow_dispatch) | |
| if: github.event_name == 'workflow_dispatch' | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| token: ${{ secrets.RELEASE_PAT }} | |
| name: v${{ steps.get_version.outputs.version }}-${{ steps.get_commit_hash.outputs.date }}-${{ steps.get_commit_hash.outputs.short }} | |
| tag_name: v${{ steps.get_version.outputs.version }}-${{ steps.get_commit_hash.outputs.date }}-${{ steps.get_commit_hash.outputs.short }} | |
| target_commitish: ${{ steps.get_commit_hash.outputs.full }} | |
| generate_release_notes: true | |
| files: | | |
| ./*.deb |