2019-11-13 08:48:05 +03:00
|
|
|
name: Windows
|
2021-10-28 18:02:07 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
|
|
|
|
2021-11-18 16:21:05 +03:00
|
|
|
concurrency:
|
2021-11-21 13:17:27 +03:00
|
|
|
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
|
|
|
|
cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }}
|
2021-11-18 16:21:05 +03:00
|
|
|
|
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:
|
2021-08-25 20:09:43 +03:00
|
|
|
include:
|
|
|
|
- vs: 2019
|
2021-12-04 13:56:01 +03:00
|
|
|
- vs: 2022
|
2019-08-17 03:43:05 +03:00
|
|
|
fail-fast: false
|
2021-12-05 10:32:04 +03:00
|
|
|
runs-on: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
|
2022-06-19 05:05:31 +03:00
|
|
|
if: ${{ !contains(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
|
2021-08-25 20:09:43 +03:00
|
|
|
name: VisualStudio ${{ matrix.vs }}
|
2020-06-04 02:22:50 +03:00
|
|
|
env:
|
2020-06-04 04:26:40 +03:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
2021-08-25 20:49:49 +03:00
|
|
|
PATCH: C:\msys64\usr\bin\patch.exe
|
2021-12-05 10:32:04 +03:00
|
|
|
OS_VER: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
|
2019-08-12 12:06:06 +03:00
|
|
|
steps:
|
2020-10-19 09:32:39 +03:00
|
|
|
- run: md build
|
|
|
|
working-directory:
|
2021-08-26 05:06:55 +03:00
|
|
|
- uses: msys2/setup-msys2@v2
|
2021-08-25 20:49:49 +03:00
|
|
|
id: setup-msys2
|
2021-08-26 05:06:55 +03:00
|
|
|
with:
|
|
|
|
update: true
|
|
|
|
install: >-
|
|
|
|
patch
|
2021-12-05 10:32:04 +03:00
|
|
|
if: ${{ env.OS_VER != 'windows-2019' }}
|
2021-08-25 20:49:49 +03:00
|
|
|
- name: patch path
|
|
|
|
shell: msys2 {0}
|
|
|
|
run: echo PATCH=$(cygpath -wa $(command -v patch)) >> $GITHUB_ENV
|
|
|
|
if: ${{ steps.setup-msys2.outcome == 'success' }}
|
2022-03-24 14:32:46 +03:00
|
|
|
- uses: actions/cache@v3
|
2019-11-12 05:27:55 +03:00
|
|
|
with:
|
|
|
|
path: C:\vcpkg\downloads
|
2021-12-05 10:32:04 +03:00
|
|
|
key: ${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-${{ github.sha }}
|
2019-11-12 05:27:55 +03:00
|
|
|
restore-keys: |
|
2021-12-05 10:32:04 +03:00
|
|
|
${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-
|
2019-11-12 05:27:55 +03:00
|
|
|
${{ runner.os }}-vcpkg-download-
|
2022-03-24 14:32:46 +03:00
|
|
|
- uses: actions/cache@v3
|
2022-02-05 15:51:46 +03:00
|
|
|
with:
|
|
|
|
path: C:\vcpkg\installed
|
|
|
|
key: ${{ runner.os }}-vcpkg-installed-${{ matrix.os }}-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-vcpkg-installed-${{ matrix.os }}-
|
|
|
|
${{ runner.os }}-vcpkg-installed-
|
2019-08-12 12:06:06 +03:00
|
|
|
- name: Install libraries with vcpkg
|
|
|
|
run: |
|
2021-12-04 14:06:11 +03:00
|
|
|
vcpkg --triplet x64-windows install libffi libyaml openssl readline zlib
|
2022-03-24 14:32:46 +03:00
|
|
|
- uses: actions/cache@v3
|
2019-11-12 05:27:55 +03:00
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
|
2021-12-05 10:32:04 +03:00
|
|
|
key: ${{ runner.os }}-chocolatey-${{ env.OS_VER }}-${{ github.sha }}
|
2019-11-12 05:27:55 +03:00
|
|
|
restore-keys: |
|
2021-12-05 10:32:04 +03:00
|
|
|
${{ runner.os }}-chocolatey-${{ env.OS_VER }}-
|
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: |
|
2021-05-11 07:32:55 +03:00
|
|
|
# Using Choco-Install for retries, but it doesn't detect failures properly
|
|
|
|
# if you pass multiple package names in a single command.
|
|
|
|
Choco-Install -PackageName winflexbison3
|
2021-05-11 07:17:33 +03:00
|
|
|
shell: pwsh
|
2020-06-04 02:33:04 +03:00
|
|
|
- name: git config
|
|
|
|
run: |
|
2021-02-02 03:55:15 +03:00
|
|
|
git config --global core.autocrlf false
|
|
|
|
git config --global core.eol lf
|
2021-02-02 08:37:15 +03:00
|
|
|
git config --global advice.detachedHead 0
|
2021-03-08 06:42:48 +03:00
|
|
|
git config --global init.defaultBranch garbage
|
2022-03-24 14:38:59 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-11 12:37:08 +03:00
|
|
|
with:
|
|
|
|
path: src
|
2022-03-24 14:32:46 +03:00
|
|
|
- uses: actions/cache@v3
|
2021-12-02 16:21:20 +03:00
|
|
|
with:
|
|
|
|
path: src/.downloaded-cache
|
|
|
|
key: downloaded-cache
|
2021-08-25 19:01:53 +03:00
|
|
|
- name: setup env
|
|
|
|
# %TEMP% is inconsistent with %TMP% and test-all expects they are consistent.
|
|
|
|
# https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302
|
2019-08-12 12:06:06 +03:00
|
|
|
run: |
|
2021-12-05 10:32:04 +03:00
|
|
|
set VS=${{ matrix.vs }}
|
|
|
|
set VCVARS=${{ matrix.vcvars }}
|
|
|
|
if not "%VCVARS%" == "" goto :vcset
|
|
|
|
set VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
|
|
if not exist %VCVARS% set VCVARS="C:\Program Files\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
|
|
:vcset
|
2021-08-25 19:01:53 +03:00
|
|
|
set | C:\msys64\usr\bin\sort > old.env
|
2021-08-25 05:51:45 +03:00
|
|
|
call %VCVARS%
|
2021-08-25 19:01:53 +03:00
|
|
|
set TMP=%USERPROFILE%\AppData\Local\Temp
|
|
|
|
set TEMP=%USERPROFILE%\AppData\Local\Temp
|
2021-11-07 07:35:40 +03:00
|
|
|
set /a TEST_JOBS=(15 * %NUMBER_OF_PROCESSORS% / 10) > nul
|
2021-08-25 19:01:53 +03:00
|
|
|
set | C:\msys64\usr\bin\sort > new.env
|
|
|
|
C:\msys64\usr\bin\comm -13 old.env new.env >> %GITHUB_ENV%
|
|
|
|
del *.env
|
2022-08-22 10:59:00 +03:00
|
|
|
- name: compiler version
|
|
|
|
run: cl
|
2022-02-06 18:10:00 +03:00
|
|
|
- name: link libraries
|
|
|
|
run: |
|
2022-02-06 19:19:36 +03:00
|
|
|
for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do (
|
|
|
|
if not %%~nI == readline mklink %%~nxI %%I
|
|
|
|
)
|
2021-12-04 14:06:11 +03:00
|
|
|
for %%I in (libcrypto-1_1-x64 libssl-1_1-x64) do (
|
|
|
|
ren c:\Windows\System32\%%I.dll %%I.dll_
|
|
|
|
)
|
2021-08-25 19:01:53 +03:00
|
|
|
- name: Configure
|
2022-02-05 11:25:33 +03:00
|
|
|
run: >-
|
|
|
|
../src/win32/configure.bat --disable-install-doc
|
|
|
|
--with-opt-dir=C:/vcpkg/installed/x64-windows
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake incs
|
|
|
|
- run: nmake extract-extlibs
|
|
|
|
- run: nmake
|
2021-08-25 20:09:25 +03:00
|
|
|
env:
|
|
|
|
YACC: win_bison
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake test
|
2021-05-12 01:18:44 +03:00
|
|
|
timeout-minutes: 5
|
2021-11-07 07:35:40 +03:00
|
|
|
- run: nmake test-all
|
|
|
|
env:
|
|
|
|
RUBY_TESTOPTS: -j${{env.TEST_JOBS}} --job-status=normal
|
2021-05-12 01:18:44 +03:00
|
|
|
timeout-minutes: 60
|
2021-08-29 19:25:22 +03:00
|
|
|
continue-on-error: ${{ matrix.continue-on-error || false }}
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake test-spec
|
2021-05-12 01:18:44 +03:00
|
|
|
timeout-minutes: 10
|
2021-08-29 19:25:22 +03:00
|
|
|
continue-on-error: ${{ matrix.continue-on-error || false }}
|
2020-03-07 11:34:41 +03:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
|
|
|
with:
|
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"ci": "GitHub Actions",
|
2021-08-25 20:09:43 +03:00
|
|
|
"env": "VS${{ matrix.vs }} / ${{ matrix.test_task || 'check' }}",
|
2020-03-07 11:34:41 +03:00
|
|
|
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
2020-03-10 08:31:50 +03:00
|
|
|
"commit": "${{ github.sha }}",
|
|
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
2020-03-07 11:34:41 +03:00
|
|
|
}
|
|
|
|
env:
|
2020-03-10 08:31:50 +03:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2021-08-02 05:39:38 +03:00
|
|
|
if: ${{ failure() && github.event_name == 'push' }}
|
2020-10-19 09:32:39 +03:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|
|
|
|
shell: cmd
|