-
Notifications
You must be signed in to change notification settings - Fork 593
40 lines (35 loc) · 1.11 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
38
39
40
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: packaging/dpkg/docker/ubuntu-24.04/Dockerfile
- os: ubuntu-24.04-arm
runner: ubuntu-24.04-arm
dockerfile_path: packaging/dpkg/docker/ubuntu-24.04/Dockerfile
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Call Build Debian Package Action
uses: ./.github/actions/build-deb-package
with:
ice_version: ${{ inputs.ice_version }}
deb_build_options: ${{ inputs.deb_build_options }}
os: ${{ matrix.os }}
dockerfile_path: ${{ matrix.dockerfile_path }}