Skip to content

Commit

Permalink
CI: add RPi Noble Image
Browse files Browse the repository at this point in the history
especially useful for t64 transition testing for multiarch packages
  • Loading branch information
theofficialgman committed May 1, 2024
1 parent 3056d4b commit afed82c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ on:
description: 'Build on Switchroot Ubuntu Noble 64bit'
required: true
type: boolean
noble_64:
description: 'Build on RPi Ubuntu Noble 64bit'
required: true
type: boolean

run-name: Testing ${{ inputs.name }}

Expand Down Expand Up @@ -294,6 +298,27 @@ jobs:
export_github_env: yes
import_github_env: true
shell: /bin/bash
commands: |
export name="${{ inputs.name }}"
./.github/workflows/test_build_commands.sh
noble-64bit:
runs-on: ubuntu-latest
if: ${{ inputs.noble_64 }}
steps:
- uses: actions/checkout@v3
- name: Test installing app on noble arm64
uses: theofficialgman/arm-runner-action@v12
with:
base_image: https://cdimage.ubuntu.com/releases/24.04/release/ubuntu-24.04-preinstalled-desktop-arm64+raspi.img.xz
bind_mount_repository: yes
image_additional_mb: 5000
cpu: cortex-a7:cortex-a72
cpu_info: cpuinfo/raspberrypi_4b
copy_repository_path: /home/runner/pi-apps
export_github_env: yes
import_github_env: true
shell: /bin/bash
commands: |
export name="${{ inputs.name }}"
./.github/workflows/test_build_commands.sh

0 comments on commit afed82c

Please sign in to comment.