ruby/.github/workflows/windows.yml

90 строки
3.5 KiB
YAML
Исходник Обычный вид История

2019-08-12 12:56:01 +03:00
name: windows
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
latest:
2019-08-12 12:56:01 +03:00
strategy:
matrix:
os: [windows-2016, windows-2019]
vs: [2017, 2019]
2019-08-12 13:08:51 +03:00
test_task: [test]
2019-08-12 12:56:01 +03:00
exclude:
- os: windows-2016
vs: 2019
- os: windows-2019
vs: 2017
fail-fast: false
2019-08-12 12:56:01 +03:00
runs-on: ${{ matrix.os }}
2019-10-09 11:46:05 +03:00
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
2019-11-12 05:27:55 +03:00
- uses: actions/cache@v1
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ github.sha }}
restore-keys: |
${{ runner.os }}-vcpkg-download-
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install readline zlib
2019-11-12 05:27:55 +03:00
- uses: actions/cache@v1
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ github.sha }}
restore-keys: |
${{ runner.os }}-chocolatey-
- name: Install libraries with chocolatey
run: |
2019-11-12 05:27:55 +03:00
choco config get cacheLocation
2019-10-25 02:53:03 +03:00
choco install --no-progress openssl winflexbison3
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
2019-10-24 20:24:00 +03:00
run: |
2019-10-28 12:31:00 +03:00
git clone --depth=50 https://github.com/ruby/ruby src
git -C src reset --hard ${{ github.sha }}
if: github.event_name == 'push'
- name: Checkout a pull request
2019-10-24 20:24:00 +03:00
run: |
2019-10-28 12:31:00 +03:00
git clone --depth=50 --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} src
git -C src reset --hard ${{ github.event.pull_request.head.sha }}
if: github.event_name == 'pull_request'
2019-10-28 12:31:00 +03:00
- name: Configure
run: |
2019-10-28 12:31:00 +03:00
md build
cd build
2019-08-12 12:56:01 +03:00
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2019-10-28 12:31:00 +03:00
../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
shell: cmd
2019-08-12 12:17:57 +03:00
- name: nmake
run: |
2019-08-12 12:56:01 +03:00
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2019-08-12 12:17:57 +03:00
set YACC=win_bison
2019-10-28 12:31:00 +03:00
cd build
2019-08-12 12:17:57 +03:00
nmake up
nmake
shell: cmd
2019-08-12 13:08:51 +03:00
- name: nmake test
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2019-10-28 12:31:00 +03:00
cd build
2019-08-12 13:08:51 +03:00
nmake ${{ matrix.test_task }}
shell: cmd
- uses: k0kubun/action-slack@v2.0.0
with:
payload: |
{
"attachments": [{
2019-10-28 09:34:42 +03:00
"text": "${{ job.status}}: <https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks|${{ matrix.os }} (vs${{ matrix.vs }}) / ${{ matrix.test_task }}> " +
"(<https://github.com/${{ github.repository }}/commit/${{ github.sha }}|" + "${{ github.sha }}".substring(0, 10) + ">) " +
"of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}",
"color": "danger"
}]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: failure() && github.event_name == 'push'