mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-03 23:55:06 +00:00
new(ci): enable musl build for arm64.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
This commit is contained in:
11
.github/workflows/reusable_build_packages.yaml
vendored
11
.github/workflows/reusable_build_packages.yaml
vendored
@@ -223,9 +223,8 @@ jobs:
|
|||||||
${{ github.workspace }}/build/falco-*.tar.gz
|
${{ github.workspace }}/build/falco-*.tar.gz
|
||||||
|
|
||||||
build-musl-package:
|
build-musl-package:
|
||||||
# x86_64 only for now
|
# See https://github.com/actions/runner/issues/409#issuecomment-1158849936
|
||||||
if: ${{ inputs.arch == 'x86_64' }}
|
runs-on: ${{ (inputs.arch == 'aarch64' && 'ubuntu-22.04-arm') || 'ubuntu-22.04' }}
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: alpine:3.17
|
container: alpine:3.17
|
||||||
steps:
|
steps:
|
||||||
# Always install deps before invoking checkout action, to properly perform a full clone.
|
# Always install deps before invoking checkout action, to properly perform a full clone.
|
||||||
@@ -265,14 +264,14 @@ jobs:
|
|||||||
- name: Rename static package
|
- name: Rename static package
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
mv falco-${{ inputs.version }}-x86_64.tar.gz falco-${{ inputs.version }}-static-x86_64.tar.gz
|
mv falco-${{ inputs.version }}-${{ inputs.arch }}.tar.gz falco-${{ inputs.version }}-static-${{ inputs.arch }}.tar.gz
|
||||||
|
|
||||||
- name: Upload Falco static package
|
- name: Upload Falco static package
|
||||||
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
||||||
with:
|
with:
|
||||||
name: falco-${{ inputs.version }}-static-x86_64.tar.gz
|
name: falco-${{ inputs.version }}-static-${{ inputs.arch }}.tar.gz
|
||||||
path: |
|
path: |
|
||||||
${{ github.workspace }}/build/falco-${{ inputs.version }}-static-x86_64.tar.gz
|
${{ github.workspace }}/build/falco-${{ inputs.version }}-static-${{ inputs.arch }}.tar.gz
|
||||||
|
|
||||||
build-wasm-package:
|
build-wasm-package:
|
||||||
if: ${{ inputs.arch == 'x86_64' }}
|
if: ${{ inputs.arch == 'x86_64' }}
|
||||||
|
@@ -71,6 +71,12 @@ jobs:
|
|||||||
name: falco-${{ inputs.version }}-static-x86_64.tar.gz
|
name: falco-${{ inputs.version }}-static-x86_64.tar.gz
|
||||||
path: /tmp/falco-build-bin-static
|
path: /tmp/falco-build-bin-static
|
||||||
|
|
||||||
|
- name: Download static binary aarch64
|
||||||
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
||||||
|
with:
|
||||||
|
name: falco-${{ inputs.version }}-static-aarch64.tar.gz
|
||||||
|
path: /tmp/falco-build-bin-static
|
||||||
|
|
||||||
- name: Download WASM package
|
- name: Download WASM package
|
||||||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
||||||
with:
|
with:
|
||||||
@@ -103,6 +109,7 @@ jobs:
|
|||||||
- name: Publish static
|
- name: Publish static
|
||||||
run: |
|
run: |
|
||||||
./scripts/publish-bin -f /tmp/falco-build-bin-static/falco-${{ inputs.version }}-static-x86_64.tar.gz -r bin${{ inputs.bucket_suffix }} -a x86_64
|
./scripts/publish-bin -f /tmp/falco-build-bin-static/falco-${{ inputs.version }}-static-x86_64.tar.gz -r bin${{ inputs.bucket_suffix }} -a x86_64
|
||||||
|
./scripts/publish-bin -f /tmp/falco-build-bin-static/falco-${{ inputs.version }}-static-aarch64.tar.gz -r bin${{ inputs.bucket_suffix }} -a aarch64
|
||||||
|
|
||||||
publish-packages-deb:
|
publish-packages-deb:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Reference in New Issue
Block a user