blob: 5b41bf307cb12e6fafc92fa3116d1d6cf4987244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
name: smoke-windows-msvc100-x86
on:
push:
branches:
- '**'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: windows-latest
env:
PERL_SKIP_TTY_TEST: 1
CONTINUOUS_INTEGRATION: 1
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@master
with:
fetch-depth: 10
- name: Set up MSVC100
run: |
choco install vcexpress2010
- name: Help
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" /help
- name: Build
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
cd win32
nmake CCTYPE=MSVC100 WIN64=undef
- name: Run Tests
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
cd win32
nmake CCTYPE=MSVC100 WIN64=undef test
|