Skip to content

Commit fa08b14

Browse files
committed
add "make disttest NOECHO=" to all CI
1 parent 2e40d96 commit fa08b14

File tree

6 files changed

+21
-14
lines changed

6 files changed

+21
-14
lines changed

.github/workflows/smoke-macos-bigsur.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ jobs:
3030
- name: Run Tests
3131
run: |
3232
make test
33+
make disttest NOECHO=

.github/workflows/smoke-macos-xcode11.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ jobs:
3030
- name: Run Tests
3131
run: |
3232
make test
33+
make disttest NOECHO=

.github/workflows/smoke-ubuntu-linux.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,10 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v1
23-
- name: perl -V
24-
run: perl -V
25-
- name: Makefile.PL
26-
run: perl Makefile.PL
27-
- name: make test
28-
run: make test
23+
- run: perl -V
24+
- run: perl Makefile.PL
25+
- run: make test
26+
- run: make disttest NOECHO=
2927

3028
linux:
3129
name: "linux ${{ matrix.perl-version }}"
@@ -63,10 +61,7 @@ jobs:
6361

6462
steps:
6563
- uses: actions/checkout@v1
66-
- name: perl -V
67-
run: perl -V
68-
- name: Makefile.PL
69-
run: perl Makefile.PL
70-
- name: make test
71-
run: make test
72-
64+
- run: perl -V
65+
- run: perl Makefile.PL
66+
- run: make test
67+
- run: make disttest NOECHO=

.github/workflows/smoke-windows-cygwin.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ jobs:
4747
run: |
4848
path c:\tools\cygwin\bin;c:\tools\cygwin\usr\bin
4949
make test
50+
- name: Run Tests
51+
shell: cmd
52+
run: |
53+
path c:\tools\cygwin\bin;c:\tools\cygwin\usr\bin
54+
make disttest NOECHO=

.github/workflows/smoke-windows-strawberryperl.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ jobs:
4545
run: |
4646
path C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;%PATH%
4747
gmake test
48+
- name: Run Tests
49+
shell: cmd
50+
run: |
51+
path C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;%PATH%
52+
gmake disttest NOECHO=

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ install:
4343
script:
4444
- perl Makefile.PL
4545
- make test
46-
- make disttest
46+
- make disttest NOECHO=

0 commit comments

Comments
 (0)