This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
lib/charnames.t: Move initialization line
[perl5.git] / .github / workflows / smoke-windows-mingw64.yml
1 name: smoke-windows-mingw64
2
3 on:
4   push:
5     branches:
6       - '**'
7     tags-ignore:
8       - '*'
9   pull_request:
10
11 jobs:
12   perl:
13
14     runs-on: windows-latest
15
16     env:
17         PERL_SKIP_TTY_TEST: 1
18         CONTINUOUS_INTEGRATION: 1
19
20     steps:
21       - run: git config --global core.autocrlf false
22       - uses: actions/checkout@master
23         with:
24             fetch-depth: 10
25       - name: Set up Perl build environment
26         run: |
27           choco install strawberryperl
28           echo "##[add-path]C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin"
29       - name: Host perl -V
30         run: perl -V
31       - name: gcc --version
32         run: gcc --version
33       - name: Build
34         shell: cmd
35         run: |
36             cd win32
37             gmake -f GNUMakefile -j2
38       - name: Run Tests
39         shell: cmd
40         run: |
41             cd win32
42             set HARNESS_OPTIONS=j2
43             set CCHOME=C:\strawberry\c
44             gmake -f GNUMakefile test