2019-11-13 00:48:05 -05:00
|
|
|
name: Windows
|
2019-08-12 05:06:06 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
jobs:
|
2019-11-12 23:44:00 -05:00
|
|
|
make:
|
2019-08-12 05:56:01 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-11-12 23:44:00 -05:00
|
|
|
test_task: [test]
|
2019-08-12 05:56:01 -04:00
|
|
|
os: [windows-2016, windows-2019]
|
|
|
|
vs: [2017, 2019]
|
|
|
|
exclude:
|
|
|
|
- os: windows-2016
|
|
|
|
vs: 2019
|
|
|
|
- os: windows-2019
|
|
|
|
vs: 2017
|
2019-08-16 20:43:05 -04:00
|
|
|
fail-fast: false
|
2019-08-12 05:56:01 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2019-10-09 04:46:05 -04:00
|
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
2019-08-12 05:06:06 -04:00
|
|
|
steps:
|
2019-11-11 21:27:55 -05:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: C:\vcpkg\downloads
|
2019-11-12 03:22:19 -05:00
|
|
|
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
|
2019-11-11 21:27:55 -05:00
|
|
|
restore-keys: |
|
2019-11-12 03:22:19 -05:00
|
|
|
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
|
2019-11-11 21:27:55 -05:00
|
|
|
${{ runner.os }}-vcpkg-download-
|
2019-08-12 05:06:06 -04:00
|
|
|
- name: Install libraries with vcpkg
|
|
|
|
run: |
|
2019-10-24 13:24:42 -04:00
|
|
|
vcpkg --triplet x64-windows install readline zlib
|
2019-11-11 21:27:55 -05:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
|
2019-11-12 03:22:19 -05:00
|
|
|
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
|
2019-11-11 21:27:55 -05:00
|
|
|
restore-keys: |
|
2019-11-12 03:22:19 -05:00
|
|
|
${{ runner.os }}-chocolatey-${{ matrix.os }}-
|
2019-11-11 21:27:55 -05:00
|
|
|
${{ runner.os }}-chocolatey-
|
2019-08-12 05:06:06 -04:00
|
|
|
- name: Install libraries with chocolatey
|
2019-09-03 08:03:10 -04:00
|
|
|
run: |
|
2019-11-11 21:27:55 -05:00
|
|
|
choco config get cacheLocation
|
2019-10-24 19:53:03 -04:00
|
|
|
choco install --no-progress openssl winflexbison3
|
2019-08-13 20:23:57 -04:00
|
|
|
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
|
|
|
|
- name: Checkout ruby/ruby
|
2019-10-24 13:24:00 -04:00
|
|
|
run: |
|
2019-11-13 05:56:33 -05:00
|
|
|
git clone --single-branch --shallow-since=yesterday https://github.com/ruby/ruby src
|
2019-10-28 05:31:00 -04:00
|
|
|
git -C src reset --hard ${{ github.sha }}
|
2019-08-13 20:23:57 -04:00
|
|
|
if: github.event_name == 'push'
|
|
|
|
- name: Checkout a pull request
|
2019-10-24 13:24:00 -04:00
|
|
|
run: |
|
2019-11-13 05:56:33 -05:00
|
|
|
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
|
2019-10-28 05:31:00 -04:00
|
|
|
git -C src reset --hard ${{ github.event.pull_request.head.sha }}
|
2019-08-13 20:23:57 -04:00
|
|
|
if: github.event_name == 'pull_request'
|
2019-11-12 23:22:46 -05:00
|
|
|
- run: ./src/tool/actions-commit-info.sh
|
|
|
|
shell: bash
|
2019-10-28 05:31:00 -04:00
|
|
|
- name: Configure
|
2019-08-12 05:06:06 -04:00
|
|
|
run: |
|
2019-10-28 05:31:00 -04:00
|
|
|
md build
|
|
|
|
cd build
|
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-10-28 05:31:00 -04:00
|
|
|
../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
|
2019-10-24 21:45:46 -04:00
|
|
|
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-10-28 05:31:00 -04:00
|
|
|
cd build
|
2019-08-12 05:17:57 -04:00
|
|
|
nmake up
|
|
|
|
nmake
|
2019-10-24 21:45:46 -04:00
|
|
|
shell: cmd
|
2019-08-12 06:08:51 -04:00
|
|
|
- name: nmake test
|
|
|
|
run: |
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
2019-10-28 05:31:00 -04:00
|
|
|
cd build
|
2019-08-12 06:08:51 -04:00
|
|
|
nmake ${{ matrix.test_task }}
|
2019-10-24 21:45:46 -04:00
|
|
|
shell: cmd
|
2019-08-22 10:10:54 -04:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
2019-08-18 12:49:51 -04:00
|
|
|
with:
|
2019-08-18 14:14:18 -04:00
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"attachments": [{
|
2019-11-12 23:22:46 -05:00
|
|
|
"text": "${{ job.status }}: ${{ env.COMMIT_DATE }}-${{ env.COMMIT_NUMBER_OF_DAY }} <https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks|${{ matrix.os }} (vs${{ matrix.vs }}) / ${{ matrix.test_task }}> " +
|
2019-08-22 10:10:54 -04:00
|
|
|
"(<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 }}",
|
2019-08-18 14:14:18 -04:00
|
|
|
"color": "danger"
|
|
|
|
}]
|
|
|
|
}
|
2019-08-18 12:49:51 -04:00
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
if: failure() && github.event_name == 'push'
|