From 4cb9b72c5133d0821cc8046fb05b62addef9fce0 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 5 Sep 2025 00:46:38 +0200 Subject: [PATCH] Drop ABI input --- action.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/action.yml b/action.yml index c372228..31c585e 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,6 @@ name: 'Compile GAP package' description: 'Compile the given GAP package being tested' inputs: - ABI: - description: 'set to 32 to use 32bit build flags for the package' - required: false - default: '' coverage: description: 'Boolean that determines whether code coverage is turned by adding `--coverage` to `CFLAGS`, `CXXFLAGS` and `LDFLAGS`.' required: false @@ -32,13 +28,6 @@ runs: export LDFLAGS="$LDFLAGS --coverage" fi - # adjust build flags for 32bit builds - if [[ "${{ inputs.ABI }}" = 32 ]]; then - export CFLAGS="$CFLAGS -m32" - export CXXFLAGS="$CXXFLAGS -m32" - export LDFLAGS="$LDFLAGS -m32" - fi - # build this package, if necessary if [[ -x prerequisites.sh ]]; then ./prerequisites.sh $GAPROOT