Compile allwinner h6 kernel #43
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
| #========================================================================== | |
| # Description: Compile allwinner h6 kernel | |
| # Copyright (C) 2023 https://github.com/13584452567 | |
| # Copyright (C) 2023 https://github.com/ophub/kernel | |
| #========================================================================== | |
| name: Compile allwinner h6 kernel | |
| on: | |
| repository_dispatch: | |
| workflow_dispatch: | |
| inputs: | |
| kernel_source: | |
| description: "Select the kernel source" | |
| required: false | |
| default: "codesnas/linux-h6-6.6.y" | |
| type: choice | |
| options: | |
| - 13584452567/linux-6.6.y | |
| - codesnas/linux-h6-6.6.y | |
| kernel_version: | |
| description: "Select kernel version" | |
| required: false | |
| default: "6.6.y" | |
| type: choice | |
| options: | |
| - 6.6.y | |
| kernel_auto: | |
| description: "Auto use the latest kernel" | |
| required: false | |
| default: true | |
| type: boolean | |
| delete_source: | |
| description: "Delete the source after compilation" | |
| required: false | |
| default: true | |
| type: boolean | |
| kernel_package: | |
| description: "Select compile package list" | |
| required: false | |
| default: "all" | |
| type: choice | |
| options: | |
| - all | |
| - dtbs | |
| kernel_toolchain: | |
| description: "Select the compilation toolchain" | |
| required: false | |
| default: "gcc" | |
| type: choice | |
| options: | |
| - clang | |
| - gcc | |
| - gcc-14.2 | |
| - gcc-14.3 | |
| ccache_clear: | |
| description: "Set whether to clear the cache" | |
| required: false | |
| default: false | |
| type: boolean | |
| docker_image: | |
| description: "Select Armbian docker image" | |
| required: false | |
| default: "trixie" | |
| type: choice | |
| options: | |
| - trixie | |
| - bookworm | |
| - noble | |
| - jammy | |
| kernel_sign: | |
| description: "Set the kernel custom signature" | |
| required: false | |
| default: "-zicai" | |
| type: choice | |
| options: | |
| - -zicai | |
| - -ophub | |
| - -happy-new-year | |
| - -dragon-boat-festival | |
| - -mid-autumn-festival | |
| - -happy-national-day | |
| - -merry-christmas | |
| - -spring-plowing | |
| - -summer-growing | |
| - -autumn-harvesting | |
| - -winter-storing | |
| - -yourname | |
| kernel_config: | |
| description: "Set the path of kernel .config" | |
| required: false | |
| default: "kernel-config/release/h6" | |
| type: choice | |
| options: | |
| - kernel-config/release/h6 | |
| - false | |
| env: | |
| TZ: Etc/UTC | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04-arm | |
| if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Initialization environment | |
| id: init | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| run: | | |
| docker rmi -f $(docker images -q) 2>/dev/null || true | |
| [[ -n "${AGENT_TOOLSDIRECTORY}" ]] && sudo rm -rf "${AGENT_TOOLSDIRECTORY}" | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android 2>/dev/null | |
| sudo swapoff -a | |
| sudo rm -f /swapfile /mnt/swapfile | |
| sudo -E apt-get -y update | |
| sudo -E apt-get -y purge azure-cli ghc* zulu* llvm* firefox google* dotnet* powershell openjdk* mongodb* moby* || true | |
| sudo -E apt-get -y install $(curl -fsSL https://ophub.org/ubuntu2404-build-armbian-depends) | |
| sudo -E systemctl daemon-reload | |
| #sudo -E apt-get -y full-upgrade | |
| sudo -E apt-get -y autoremove --purge | |
| sudo -E apt-get clean | |
| sudo sed -i '/NVM_DIR/d;/skel/d' /root/{.bashrc,.profile} | |
| sudo rm -rf ~/{.cargo,.dotnet,.rustup} | |
| sudo -E timedatectl set-timezone "${TZ:-Etc/UTC}" | |
| sudo -E ntpdate ntp.ubuntu.com 0.pool.ntp.org || true | |
| sudo -E timedatectl set-ntp true | |
| date -u | |
| timedatectl status || true | |
| echo "status=success" >> ${GITHUB_OUTPUT} | |
| - name: Create simulated physical disk | |
| id: disk | |
| run: | | |
| mnt_size=$(expr $(df -h /mnt | tail -1 | awk '{print $4}' | sed 's/[[:alpha:]]//g' | sed 's/\..*//') - 1) | |
| root_size=$(expr $(df -h / | tail -1 | awk '{print $4}' | sed 's/[[:alpha:]]//g' | sed 's/\..*//') - 4) | |
| sudo truncate -s "${mnt_size}"G /mnt/mnt.img | |
| sudo truncate -s "${root_size}"G /root.img | |
| sudo losetup /dev/loop6 /mnt/mnt.img | |
| sudo losetup /dev/loop7 /root.img | |
| sudo pvcreate /dev/loop6 | |
| sudo pvcreate /dev/loop7 | |
| sudo vgcreate github /dev/loop6 /dev/loop7 | |
| sudo lvcreate -n runner -l 100%FREE github | |
| sudo mkfs.xfs -f -i sparse=0 -b size=4096 /dev/github/runner | |
| sudo mkdir -p /builder | |
| sudo mount /dev/github/runner /builder | |
| sudo chown -R runner:runner /builder | |
| df -Th | |
| echo "status=success" >> ${GITHUB_OUTPUT} | |
| - name: Install Docker | |
| id: install | |
| working-directory: /builder | |
| if: ${{ steps.disk.outputs.status }} == 'success' && !cancelled() | |
| run: | | |
| df -hT ${PWD} | |
| curl -fsSL https://get.docker.com | sh | |
| sudo usermod -aG docker $USER | |
| sudo newgrp docker | |
| echo "status=success" >> ${GITHUB_OUTPUT} | |
| - name: Pull Docker Image [ ${{ inputs.docker_image }} ] | |
| id: pull | |
| working-directory: /builder | |
| if: ${{ steps.install.outputs.status }} == 'success' && !cancelled() | |
| run: | | |
| # Create a docker mapping directory | |
| mkdir -p /builder/{compile-kernel/{kernel,output},ccache} | |
| ln -sf /builder/compile-kernel/kernel /home/runner/work/_actions/ophub/amlogic-s9xxx-armbian/main/compile-kernel/kernel | |
| ln -sf /builder/compile-kernel/output /home/runner/work/_actions/ophub/amlogic-s9xxx-armbian/main/compile-kernel/output | |
| # Pull the Armbian Docker image | |
| docker run -d --privileged \ | |
| --name armbian-ophub \ | |
| -v /builder/compile-kernel:/opt/kernel/compile-kernel \ | |
| -v /builder/ccache:/root/.ccache \ | |
| -v /etc/localtime:/etc/localtime:ro \ | |
| -v /etc/timezone:/etc/timezone:ro \ | |
| -e CCACHE_DIR=/root/.ccache \ | |
| --restart=always \ | |
| ophub/armbian-${{ inputs.docker_image }}:arm64 | |
| echo "status=success" >> ${GITHUB_OUTPUT} | |
| - name: Get kernel source hash | |
| id: kernelhash | |
| if: ${{ steps.pull.outputs.status }} == 'success' && !cancelled() | |
| run: | | |
| # Get the latest source hash from the kernel repository | |
| api_url="https://api.github.com/repos/${{ inputs.kernel_source }}/git/ref/heads/main" | |
| source_hash=$(curl -fsSL -m 20 \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ | |
| ${api_url} | | |
| jq -r '.object.sha' | |
| ) | |
| [[ -z "${source_hash}" || "${source_hash}" == "null" ]] && source_hash="${{ github.sha }}" | |
| echo "source_hash=${source_hash}" >> ${GITHUB_ENV} | |
| echo "status=success" >> ${GITHUB_OUTPUT} | |
| - name: Cache ccache | |
| uses: actions/cache@v4 | |
| with: | |
| path: /builder/ccache | |
| key: kernel-h6-${{ inputs.kernel_toolchain }}-${{ inputs.kernel_version }}-${{ env.source_hash }} | |
| restore-keys: | | |
| kernel-h6-${{ inputs.kernel_toolchain }}-${{ inputs.kernel_version }}- | |
| - name: Compile the kernel [ ${{ inputs.kernel_version }} ] | |
| uses: ophub/amlogic-s9xxx-armbian@main | |
| if: ${{ steps.pull.outputs.status }} == 'success' && !cancelled() | |
| with: | |
| build_target: kernel | |
| kernel_source: ${{ inputs.kernel_source }} | |
| kernel_version: ${{ inputs.kernel_version }} | |
| kernel_auto: ${{ inputs.kernel_auto }} | |
| delete_source: ${{ inputs.delete_source }} | |
| kernel_package: ${{ inputs.kernel_package }} | |
| kernel_toolchain: ${{ inputs.kernel_toolchain }} | |
| kernel_sign: ${{ inputs.kernel_sign }} | |
| kernel_config: ${{ inputs.kernel_config }} | |
| ccache_clear: ${{ inputs.ccache_clear }} | |
| - name: Upload Kernel to Release | |
| uses: ncipollo/release-action@main | |
| if: ${{ env.PACKAGED_STATUS }} == 'success' && !cancelled() | |
| with: | |
| tag: kernel_h6 | |
| artifacts: ${{ env.PACKAGED_OUTPUTPATH }}/* | |
| allowUpdates: true | |
| removeArtifacts: false | |
| replacesArtifacts: true | |
| makeLatest: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| body: | | |
| - These kernels can be used for Armbian and OpenWrt. | |
| - These are dedicated kernels for `Allwinner H6 (TQC-A01)` devices and are not compatible with other series. | |
| - 这些内核可用于 Armbian 和 OpenWrt。 | |
| - 这些是 `全志 H6(TQC-A01)` 设备的专用内核,和其他系列不通用。 |