We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1047b commit 91d7591Copy full SHA for 91d7591
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: msvc
2
+on:
3
+ push:
4
+ branches:
5
+ - '*'
6
+ tags-ignore:
7
8
+ pull_request:
9
+jobs:
10
+ msvc:
11
+ runs-on: windows-latest
12
+ steps:
13
+ - name: Get/extract
14
+ shell: bash
15
+ run: |
16
+ curl https://cpan.metacpan.org/src/5.0/perl-5.40.1.tar.gz -o perl.tgz
17
+ tar zxvf perl.tgz
18
+ - name: Build
19
+ shell: cmd
20
21
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
22
+ cd perl-5.40.1\win32
23
+ nmake CCTYPE=MSVC142 CFG=Debug
24
+ - name: Show Config
25
26
27
+ cd perl-5.40.1
28
+ .\perl.exe -V
29
+ .\perl.exe -e "use Config; print Config::config_sh"
0 commit comments