-
Notifications
You must be signed in to change notification settings - Fork 593
37 lines (33 loc) · 1.04 KB
/
build-deb-packages.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
name: "Build DEB Packages"
on:
workflow_dispatch:
inputs:
ice_version:
description: "The ICE version to build"
required: true
default: "3.8.0~alpha0"
deb_build_options:
description: "DEB_BUILD_OPTIONS for the build"
required: false
default: "nocheck parallel=4"
jobs:
build:
name: "Build for ${{ matrix.os }}"
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- os: ubuntu-24.04
runner: ubuntu-24.04
dockerfile_path: ice/packaging/dpkg/ubuntu-24.04/Dockerfile
- os: ubuntu-24.04-arm
runner: ubuntu-24.04-arm
dockerfile_path: ice/packaging/dpkg/ubuntu-24.04-arm/Dockerfile
steps:
- name: Call Build Debian Package Action
uses: ./.github/actions/build-debian-package
with:
ice_version: ${{ inputs.ice_version }}
deb_build_options: ${{ inputs.deb_build_options }}
os: ${{ matrix.os }}
dockerfile_path: ${{ matrix.dockerfile_path }}