2019-11-13 08:48:05 +03:00
|
|
|
name: Windows
|
2020-02-26 06:52:07 +03:00
|
|
|
on: [push, pull_request]
|
2019-08-12 12:06:06 +03:00
|
|
|
jobs:
|
2019-11-13 07:44:00 +03:00
|
|
|
make:
|
2019-08-12 12:56:01 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-11-13 07:44:00 +03:00
|
|
|
test_task: [test]
|
2019-11-27 13:09:47 +03:00
|
|
|
os: [windows-2019]
|
|
|
|
vs: [2019]
|
2019-08-17 03:43:05 +03:00
|
|
|
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]')"
|
2019-08-12 12:06:06 +03:00
|
|
|
steps:
|
2019-11-12 05:27:55 +03:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: C:\vcpkg\downloads
|
2019-11-12 11:22:19 +03:00
|
|
|
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
|
2019-11-12 05:27:55 +03:00
|
|
|
restore-keys: |
|
2019-11-12 11:22:19 +03:00
|
|
|
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
|
2019-11-12 05:27:55 +03:00
|
|
|
${{ runner.os }}-vcpkg-download-
|
2019-08-12 12:06:06 +03:00
|
|
|
- name: Install libraries with vcpkg
|
|
|
|
run: |
|
2019-10-24 20:24:42 +03:00
|
|
|
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
|
2019-11-12 11:22:19 +03:00
|
|
|
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
|
2019-11-12 05:27:55 +03:00
|
|
|
restore-keys: |
|
2019-11-12 11:22:19 +03:00
|
|
|
${{ runner.os }}-chocolatey-${{ matrix.os }}-
|
2019-11-12 05:27:55 +03:00
|
|
|
${{ runner.os }}-chocolatey-
|
2019-08-12 12:06:06 +03:00
|
|
|
- name: Install libraries with chocolatey
|
2019-09-03 15:03:10 +03:00
|
|
|
run: |
|
2019-10-25 02:53:03 +03:00
|
|
|
choco install --no-progress openssl winflexbison3
|
2019-08-14 03:23:57 +03:00
|
|
|
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
|
2020-01-06 12:52:19 +03:00
|
|
|
- name: Checkout ruby
|
2019-10-24 20:24:00 +03:00
|
|
|
run: |
|
2020-01-11 10:24:16 +03:00
|
|
|
git clone --single-branch --shallow-since=yesterday --branch=${GITHUB_REF#refs/heads/} https://github.com/${{ github.repository }} src
|
2019-10-28 12:31:00 +03:00
|
|
|
git -C src reset --hard ${{ github.sha }}
|
2019-08-14 03:23:57 +03:00
|
|
|
if: github.event_name == 'push'
|
2020-01-11 10:24:16 +03:00
|
|
|
shell: bash
|
2019-08-14 03:23:57 +03:00
|
|
|
- name: Checkout a pull request
|
2019-10-24 20:24:00 +03:00
|
|
|
run: |
|
2019-11-13 13:56:33 +03: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 12:31:00 +03:00
|
|
|
git -C src reset --hard ${{ github.event.pull_request.head.sha }}
|
2019-08-14 03:23:57 +03:00
|
|
|
if: github.event_name == 'pull_request'
|
2019-11-13 07:22:46 +03:00
|
|
|
- run: ./src/tool/actions-commit-info.sh
|
|
|
|
shell: bash
|
2019-12-11 08:01:23 +03:00
|
|
|
id: commit_info
|
2020-02-26 07:12:46 +03:00
|
|
|
- run: md build
|
|
|
|
shell: cmd
|
2019-10-28 12:31:00 +03:00
|
|
|
- name: Configure
|
2019-08-12 12:06:06 +03:00
|
|
|
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-11-26 10:19:18 +03:00
|
|
|
../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"
|
2020-02-26 07:12:46 +03:00
|
|
|
working-directory: build
|
2019-10-25 04:45:46 +03:00
|
|
|
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-11-13 13:45:14 +03:00
|
|
|
echo on
|
2019-08-12 12:17:57 +03:00
|
|
|
nmake up
|
2019-11-13 13:45:14 +03:00
|
|
|
nmake extract-gems
|
2019-08-12 12:17:57 +03:00
|
|
|
nmake
|
2020-02-26 07:12:46 +03:00
|
|
|
working-directory: build
|
2019-10-25 04:45:46 +03:00
|
|
|
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"
|
|
|
|
nmake ${{ matrix.test_task }}
|
2020-02-26 07:12:46 +03:00
|
|
|
working-directory: build
|
2019-10-25 04:45:46 +03:00
|
|
|
shell: cmd
|
2019-08-22 17:10:54 +03:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
2019-08-18 19:49:51 +03:00
|
|
|
with:
|
2019-08-18 21:14:18 +03:00
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"attachments": [{
|
2020-02-10 10:00:51 +03:00
|
|
|
"text": "${{ matrix.os }} / ${{ matrix.test_task }} <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|${{ steps.commit_info.outputs.COMMIT_DATE }} #${{ steps.commit_info.outputs.COMMIT_NUMBER_OF_DAY }}> " +
|
2019-08-22 17:10:54 +03:00
|
|
|
"(<https://github.com/${{ github.repository }}/commit/${{ github.sha }}|" + "${{ github.sha }}".substring(0, 10) + ">) " +
|
2020-01-01 08:26:39 +03:00
|
|
|
"of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }} failed",
|
2019-08-18 21:14:18 +03:00
|
|
|
"color": "danger"
|
|
|
|
}]
|
|
|
|
}
|
2019-08-18 19:49:51 +03:00
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
if: failure() && github.event_name == 'push'
|
2020-03-07 11:34:41 +03:00
|
|
|
# New Slack notification (experimental)
|
|
|
|
- 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 }}"
|
|
|
|
}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }}
|
|
|
|
if: failure() && github.event_name == 'push'
|