Family Meson S4T7: Opt-out of BTF KERNEL_BTF=no
#510
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
| # Pushes the contents of the repo to the Codeberg mirror | |
| name: "Infrastructure: Mirror to Codeberg" | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| # Cancel older runs if a new one starts (per workflow + branch) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.repository }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| codeberg: | |
| # Extra safety so forks don't try to run it | |
| if: ${{ github.repository == 'armbian/build' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout full history | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Mirror to Codeberg | |
| uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 # v1.1.1 | |
| with: | |
| target_repo_url: git@codeberg.org:armbian/build.git | |
| ssh_private_key: ${{ secrets.GHA_SSH_KEY }} |