diff options
Diffstat (limited to '.github/workflows/smoke-windows-msvc100.yml')
-rw-r--r-- | .github/workflows/smoke-windows-msvc100.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.github/workflows/smoke-windows-msvc100.yml b/.github/workflows/smoke-windows-msvc100.yml new file mode 100644 index 0000000000..f13ab41bcf --- /dev/null +++ b/.github/workflows/smoke-windows-msvc100.yml @@ -0,0 +1,39 @@ +name: smoke-windows-msvc100-x86 + +on: + push: + branches: + - '*' + tags-ignore: + - '*' + pull_request: + +jobs: + perl: + + runs-on: windows-latest + + 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=MSVC100FREE 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=MSVC100FREE WIN64=undef test |