Build kernel #250
Workflow file for this run
This file contains 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 kernel | |
on: | |
# Allow manual runs of workflow from Actions tab | |
workflow_dispatch: | |
schedule: | |
- cron: '29 4 1,15 * *' | |
push: | |
branches: | |
- force-build | |
jobs: | |
build: | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -yqq | |
sudo apt-get install -yqq --no-install-recommends \ | |
git bc bison flex libssl-dev make libc6-dev libncurses5-dev devscripts | |
sudo apt-get install -yqq --no-install-recommends \ | |
crossbuild-essential-armhf crossbuild-essential-arm64 | |
- name: Build kernel | |
id: build-kernel | |
run: | | |
./build-kernel.sh --arch=arm64 --deb-arch=arm64 -jX | |
- name: Upload kernel | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wlanpi-kernel-${{ steps.build-kernel.outputs.package-version }} | |
path: ${{ steps.build-kernel.outputs.deb-package }} | |
- name: Upload package to packagecloud | |
if: ${{ github.event.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | |
uses: danielmundi/upload-packagecloud@main | |
with: | |
package-name: ${{ steps.build-kernel.outputs.deb-package }} | |
packagecloud-username: wlanpi | |
packagecloud-repo: dev | |
packagecloud-distrib: debian/bullseye | |
packagecloud-token: ${{ secrets.PACKAGECLOUD_TOKEN }} | |
slack-workflow-status: | |
if: always() | |
name: Post Workflow Status to Slack | |
needs: | |
- build | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: Slack Workflow Notification | |
uses: Gamesight/slack-workflow-status@master | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} |