Skip to content

Commit

Permalink
workflows: add correct WAMR option
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens committed Jan 27, 2025
1 parent dd80de5 commit e939047
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
build-args: |
FLB_NIGHTLY_BUILD=${{ inputs.unstable }}
RELEASE_VERSION=${{ inputs.version }}
WAMR_BUILD_TARGET=${{ (contains(matrix.platform, 'arm/v7') && 'ARMV7') || '' }}
WAMR_BUILD_TARGET=${{ (contains(matrix.platform, 'arm/v7') && 'ARMV7') || (contains(matrix.platform, 'arm') && 'ARM') || 'X86_64' }}
- name: Export ${{ matrix.target }} digest
run: |
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ COPY . ./
FROM builder-base AS builder
WORKDIR /src/fluent-bit/build/

ARG WAMR_BUILD_TARGET
# Required to be set to ARMV7 for that target
ARG WAMR_BUILD_TARGET=X86_64

RUN cmake -DFLB_RELEASE=On \
-DFLB_JEMALLOC=On \
Expand Down

0 comments on commit e939047

Please sign in to comment.