mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
91 lines
3.8 KiB
YAML
91 lines
3.8 KiB
YAML
name: Windows
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
jobs:
|
|
make:
|
|
strategy:
|
|
matrix:
|
|
test_task: [test]
|
|
os: [windows-2019]
|
|
vs: [2019]
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
steps:
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: C:\vcpkg\downloads
|
|
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
|
|
${{ runner.os }}-vcpkg-download-
|
|
- name: Install libraries with vcpkg
|
|
run: |
|
|
vcpkg --triplet x64-windows install readline zlib
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
|
|
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-chocolatey-${{ matrix.os }}-
|
|
${{ runner.os }}-chocolatey-
|
|
- name: Install libraries with chocolatey
|
|
run: |
|
|
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
|
|
run: |
|
|
git clone --single-branch --shallow-since=yesterday --branch=${GITHUB_REF#refs/heads/} https://github.com/${{ github.repository }} src
|
|
git -C src reset --hard ${{ github.sha }}
|
|
if: github.event_name == 'push'
|
|
shell: bash
|
|
- name: Checkout a pull request
|
|
run: |
|
|
git clone --single-branch --shallow-since=yesterday --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'
|
|
- run: ./src/tool/actions-commit-info.sh
|
|
shell: bash
|
|
id: commit_info
|
|
- name: Configure
|
|
run: |
|
|
md build
|
|
cd build
|
|
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"
|
|
shell: cmd
|
|
- name: nmake
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
set YACC=win_bison
|
|
cd build
|
|
echo on
|
|
nmake up
|
|
nmake extract-gems
|
|
nmake
|
|
shell: cmd
|
|
- name: nmake test
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
cd build
|
|
nmake ${{ matrix.test_task }}
|
|
shell: cmd
|
|
- uses: k0kubun/action-slack@v2.0.0
|
|
with:
|
|
payload: |
|
|
{
|
|
"attachments": [{
|
|
"text": "${{ matrix.os }} / ${{ matrix.test_task }} <https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks|${{ steps.commit_info.outputs.COMMIT_DATE }} #${{ steps.commit_info.outputs.COMMIT_NUMBER_OF_DAY }}> " +
|
|
"(<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 }} failed",
|
|
"color": "danger"
|
|
}]
|
|
}
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
if: failure() && github.event_name == 'push'
|