summaryrefslogtreecommitdiffstats
path: root/.github/actions
diff options
context:
space:
mode:
authorDave Davenport <DaveDavenport@users.noreply.github.com>2021-11-29 21:03:14 +0100
committerGitHub <noreply@github.com>2021-11-29 21:03:14 +0100
commit92dae73bc11b2538b874ffb820c159ab97f42599 (patch)
treeaf4e2fa67b34f214d2d004a37465030cf735f6d3 /.github/actions
parentf72d6135bd8c4903adb233457b2ca1b0ca4b2705 (diff)
Enable/Disable windowmode test (#1536)
* Enable/Disable windowmode test * [CI] Fix typo in name. * Update Changelog
Diffstat (limited to '.github/actions')
-rw-r--r--.github/actions/autotools/action.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/autotools/action.yml b/.github/actions/autotools/action.yml
index db95fd3c..572f47f0 100644
--- a/.github/actions/autotools/action.yml
+++ b/.github/actions/autotools/action.yml
@@ -5,6 +5,9 @@ inputs:
cc:
description: Compiler to use
required: true
+ windowmode:
+ description: Enable window mode
+ required: true
runs:
using: composite
@@ -18,7 +21,7 @@ runs:
mkdir builddir && cd builddir
- ../configure CC=${{ inputs.cc }}
+ ../configure CC=${{ inputs.cc }} --${{ inputs.windowmode }}-windowmode
shell: bash
- id: build
run: cd builddir && make