1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/.github/workflows/windows.yml

83 lines
3 KiB
YAML
Raw Normal View History

name: Windows
on: [push, pull_request]
jobs:
make:
2019-08-12 05:56:01 -04:00
strategy:
matrix:
test_task: [test]
os: [windows-2019]
vs: [2019]
fail-fast: false
2019-08-12 05:56:01 -04:00
runs-on: ${{ matrix.os }}
env:
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
2019-10-09 04:46:05 -04:00
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/cache@v2
2019-11-11 21:27:55 -05:00
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
2019-11-11 21:27:55 -05:00
restore-keys: |
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
2019-11-11 21:27:55 -05:00
${{ runner.os }}-vcpkg-download-
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install readline zlib
- uses: actions/cache@v2
2019-11-11 21:27:55 -05:00
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
2019-11-11 21:27:55 -05:00
restore-keys: |
${{ runner.os }}-chocolatey-${{ matrix.os }}-
2019-11-11 21:27:55 -05:00
${{ runner.os }}-chocolatey-
- name: Install libraries with chocolatey
run: |
2019-10-24 19:53:03 -04:00
choco install --no-progress openssl winflexbison3
2020-06-03 19:33:04 -04:00
- name: git config
run: |
git config --system advice.detachedHead 0
2020-05-11 05:37:08 -04:00
- uses: actions/checkout@v2
with:
path: src
- run: ./src/tool/actions-commit-info.sh
shell: bash
id: commit_info
- run: md build
shell: cmd
2019-10-28 05:31:00 -04:00
- name: Configure
run: |
2019-08-12 05:56:01 -04:00
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
working-directory: build
shell: cmd
2019-08-12 05:17:57 -04:00
- name: nmake
run: |
2019-08-12 05:56:01 -04:00
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2019-08-12 05:17:57 -04:00
set YACC=win_bison
2019-11-13 05:45:14 -05:00
echo on
nmake incs
nmake extract-extlibs
2019-08-12 05:17:57 -04:00
nmake
working-directory: build
shell: cmd
2019-08-12 06:08:51 -04:00
- name: nmake test
timeout-minutes: 30
2019-08-12 06:08:51 -04:00
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
nmake ${{ matrix.test_task }}
working-directory: build
shell: cmd
- uses: k0kubun/action-slack@v2.0.0
with:
payload: |
{
"ci": "GitHub Actions",
"env": "${{ matrix.os }} / ${{ matrix.test_task }}",
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"commit": "${{ github.sha }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
if: failure() && github.event_name == 'push'