Skip to content

Commit

Permalink
ci: Add missing 'static' build target for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-larraz committed Jan 15, 2025
1 parent aeea0c9 commit a4950e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/build-kind2/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ inputs:
flambda:
default: false
type: boolean
build-target:
description: The build target for the make command
required: false
default: ""

runs:
using: composite
Expand Down Expand Up @@ -35,4 +39,4 @@ runs:

- name: Build Kind2
shell: bash
run: opam exec make
run: opam exec make ${{ inputs.build-target }}
1 change: 1 addition & 0 deletions .github/workflows/kind2-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
with:
ocaml-version: ${{ matrix.ocaml-version }}
flambda: true
build-target: static

- name: Strip Kind 2 macOS binary
if: runner.os == 'macOS'
Expand Down

0 comments on commit a4950e0

Please sign in to comment.