summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2020-05-22 15:23:03 -0600
committerTodd Rinaldo <toddr@cpan.org>2020-06-02 15:21:34 -0500
commitc5ba364195dce3d9a50978015c43e8e0f073f08e (patch)
tree4da4a18751631bb01f86cf7a168947144207e054 /.github
parentee27170c5cfbe03f03b6c6c5e8e66c716119f3bc (diff)
downloadperl-c5ba364195dce3d9a50978015c43e8e0f073f08e.tar.gz
Set CONFIGURE_ARGS env correctly for sanity check
also add a debug statement for viewing GitHub context
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/testsuite.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 73213b2ad0..9fd32b055a 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -9,7 +9,6 @@ on:
pull_request:
jobs:
-
# ___ _ ___ __ _ _
# / __|_ __ ___| |_____ |_ _|_ _ / _|___ _ _ _ __ __ _| |_(_)___ _ _ ___
# \__ \ ' \/ _ \ / / -_) | || ' \| _/ _ \ '_| ' \/ _` | _| / _ \ ' \(_-<
@@ -55,9 +54,12 @@ jobs:
PERL_SKIP_TTY_TEST: 1
CONTINUOUS_INTEGRATION: 1
WORKSPACE: ${{ github.workspace }}
- CONFIGURE_ARGS: "-Dusethreads"
steps:
+ - name: Dump GitHub context
+ env:
+ GITHUB_CONTEXT: ${{ toJson(github) }}
+ run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v2
with:
fetch-depth: 0
@@ -67,7 +69,9 @@ jobs:
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Configure
run: |
- ./Configure -des -Dusedevel ${{ matrix.CONFIGURE_ARGS }} -Dprefix="$HOME/perl-blead" -DDEBUGGING
+ ./Configure -des -Dusedevel ${CONFIGURE_ARGS} -Dprefix="$HOME/perl-blead" -DDEBUGGING
+ env:
+ CONFIGURE_ARGS: "-Dusethreads"
- name: Build
run: |
make -j2