Skip to content

Commit e22bdcb

Browse files
packaging: support ARM64 AL2023 builds via Actuated runners (#7527)
* packaging: support ARM64 AL2023 builds via Actuated runners Signed-off-by: Patrick Stephens <pat@calyptia.com> * workflows: enable for this repo only Signed-off-by: Patrick Stephens <pat@calyptia.com> * workflows: enable concurrency groups Signed-off-by: Patrick Stephens <pat@calyptia.com> * workflows: ensure we use the Actuated mirror set up Signed-off-by: Patrick Stephens <pat@calyptia.com> --------- Signed-off-by: Patrick Stephens <pat@calyptia.com>
1 parent e1e8e94 commit e22bdcb

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.github/actionlint.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
self-hosted-runner:
2+
labels:
3+
- actuated
4+
- actuated-aarch64

.github/workflows/call-build-linux-packages.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ jobs:
105105
call-build-linux-packages:
106106
name: ${{ matrix.distro }} package build and stage to S3
107107
environment: ${{ inputs.environment }}
108-
runs-on: ubuntu-latest
108+
# Ensure for OSS Fluent Bit repo we enable usage of Actuated runners for ARM builds, for forks it should keep existing ubuntu-latest usage.
109+
runs-on: ${{ (contains(matrix.distro, 'arm' ) && (github.repository == 'fluent/fluent-bit') && 'actuated-aarch64') || 'ubuntu-latest' }}
109110
permissions:
110111
contents: read
111112
strategy:
@@ -119,6 +120,10 @@ jobs:
119120
with:
120121
ref: ${{ inputs.ref }}
121122

123+
- name: Set up Actuated mirror
124+
if: contains(matrix.distro, 'arm' ) && (github.repository == 'fluent/fluent-bit')
125+
uses: self-actuated/hub-mirror@master
126+
122127
- name: Set up QEMU
123128
uses: docker/setup-qemu-action@v2
124129

.github/workflows/pr-package-tests.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ on:
99
branches:
1010
- master
1111

12-
jobs:
12+
# Cancel any running on push
13+
concurrency:
14+
group: ${{ github.ref }}
15+
cancel-in-progress: true
1316

17+
jobs:
1418
# This job provides this metadata for the other jobs to use.
1519
pr-package-test-build-get-meta:
1620
# This is a long test to run so only on-demand for certain PRs

packaging/build-config.json

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"target": "amazonlinux/2023",
1313
"type": "rpm"
1414
},
15+
{
16+
"target": "amazonlinux/2023.arm64v8",
17+
"type": "rpm"
18+
},
1519
{
1620
"target": "centos/7",
1721
"type": "rpm"

0 commit comments

Comments
 (0)