-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.82 KB
/
build-images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Release
on:
push:
branches:
- main # Trigger on any push to the main branch
pull_request:
workflow_dispatch: # Allow manual triggers
jobs:
armbian-images:
name: '2025 Realsense Image Build'
runs-on: ubuntu-22.04-arm # Use a GitHub-hosted runner
strategy:
matrix:
board: [rock-5c, radxa-zero3]
steps:
# Checkout this repository
- name: Checkout repository
uses: actions/checkout@v3
# Checkout the Armbian build repository
- name: Checkout Armbian Build Repository
uses: actions/checkout@v3
with:
repository: armbian/build
ref: main # Use the main branch of the Armbian repository
path: armbian-build # Check out the Armbian repository to this subdirectory
- name: Copy Userpatches
run: |
mkdir -p armbian-build/userpatches
cp -r 2025/realsense/customize-image.sh armbian-build/userpatches/
working-directory: ${{ github.workspace }}
- name: Build Armbian Image
run: |
./compile.sh build BOARD=${{ matrix.board }} BRANCH=vendor BUILD_DESKTOP=no BUILD_MINIMAL=no KERNEL_CONFIGURE=no RELEASE=jammy COMPRESS_OUTPUTIMAGE=sha,gz
working-directory: ${{ github.workspace }}/armbian-build
- name: Compress and Archive Output Image
run: |
mkdir -p ${{ github.workspace }}/artifacts
for img in ${{ github.workspace }}/armbian-build/output/images/*.img; do
gzip -c "$img" > "${img}.gz"
mv "${img}.gz" ${{ github.workspace }}/artifacts/
done
- name: Upload Image Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.board }}-jammy-realsense-${{ github.sha }}.img.gz
path: ${{ github.workspace }}/artifacts/*