Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down