2019-11-13 08:48:05 +03:00
|
|
|
name: Windows
|
2021-10-28 18:02:07 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
2024-05-09 04:45:45 +03:00
|
|
|
- '**/man/*'
|
2021-10-28 18:02:07 +03:00
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
2022-08-22 12:08:05 +03:00
|
|
|
- '**/.document'
|
2023-12-25 16:12:19 +03:00
|
|
|
- '.*.yml'
|
2021-10-28 18:02:07 +03:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
2024-05-09 04:45:45 +03:00
|
|
|
- '**/man/*'
|
2021-10-28 18:02:07 +03:00
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
2022-08-22 12:08:05 +03:00
|
|
|
- '**/.document'
|
2023-12-25 16:12:19 +03:00
|
|
|
- '.*.yml'
|
2023-03-28 15:01:44 +03:00
|
|
|
merge_group:
|
2021-10-28 18:02:07 +03:00
|
|
|
|
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
|
|
|
|
2022-11-28 10:50:41 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
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:
|
2024-01-09 11:12:11 +03:00
|
|
|
- vc: 2015
|
|
|
|
vs: 2019
|
|
|
|
vcvars: '10.0.14393.0 -vcvars_ver=14.0' # The oldest Windows 10 SDK w/ VC++ 2015 toolset (v140)
|
2021-08-25 20:09:43 +03:00
|
|
|
- vs: 2019
|
2021-12-04 13:56:01 +03:00
|
|
|
- vs: 2022
|
2019-08-17 03:43:05 +03:00
|
|
|
fail-fast: false
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-12-05 10:32:04 +03:00
|
|
|
runs-on: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-07-13 07:17:44 +03:00
|
|
|
if: >-
|
|
|
|
${{!(false
|
|
|
|
|| contains(github.event.head_commit.message, '[DOC]')
|
2024-04-08 15:26:11 +03:00
|
|
|
|| contains(github.event.head_commit.message, 'Document')
|
2023-07-13 07:17:44 +03:00
|
|
|
|| contains(github.event.pull_request.title, '[DOC]')
|
2024-04-08 15:26:11 +03:00
|
|
|
|| contains(github.event.pull_request.title, 'Document')
|
|
|
|
|| contains(github.event.pull_request.labels.*.name, 'Document')
|
2023-08-25 06:07:00 +03:00
|
|
|
|| (github.event_name == 'push' && github.actor == 'dependabot[bot]')
|
2023-07-13 07:17:44 +03:00
|
|
|
)}}
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2024-01-09 11:12:11 +03:00
|
|
|
name: VisualStudio ${{ matrix.vc || matrix.vs }}
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2020-06-04 02:22:50 +03:00
|
|
|
env:
|
2023-07-03 15:06:26 +03:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{ github.ref }}
|
2021-12-05 10:32:04 +03:00
|
|
|
OS_VER: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
|
2023-06-19 21:18:13 +03:00
|
|
|
# FIXME: This is a workaround for the vcpkg's issue present as of openssl 3.1.1
|
|
|
|
# where OpenSSL's default modules directory is incorrectly set to C:\vcpkg\packages\openssl_x64-windows\bin
|
|
|
|
# cf. https://github.com/ruby/openssl/pull/635#issuecomment-1596833720
|
|
|
|
OPENSSL_MODULES: C:\vcpkg\installed\x64-windows\bin
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2019-08-12 12:06:06 +03:00
|
|
|
steps:
|
2020-10-19 09:32:39 +03:00
|
|
|
- run: md build
|
|
|
|
working-directory:
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-08-02 07:48:43 +03:00
|
|
|
- name: find tools
|
|
|
|
id: find-tools
|
|
|
|
run: |
|
|
|
|
::- find needed tools
|
|
|
|
set NEEDS=
|
2023-10-15 16:27:33 +03:00
|
|
|
for %%I in (%NEEDED_TOOLS%) do if "%%~$PATH:I" == "" (
|
2023-10-15 08:19:14 +03:00
|
|
|
call set NEEDS=%%NEEDS%% %%~nI
|
2023-08-02 07:48:43 +03:00
|
|
|
) else (
|
|
|
|
echo %%I: %%~$PATH:I
|
|
|
|
)
|
2023-10-15 08:19:14 +03:00
|
|
|
echo.needs=%NEEDS%>>%GITHUB_OUTPUT%
|
|
|
|
if "%NEEDS%" == "" (
|
|
|
|
echo [debug] All needed tools found
|
|
|
|
) else (
|
|
|
|
echo [warning^]Needs%NEEDS%
|
|
|
|
)
|
2023-10-15 16:27:33 +03:00
|
|
|
env:
|
|
|
|
NEEDED_TOOLS: >-
|
|
|
|
patch.exe
|
2023-08-02 07:48:43 +03:00
|
|
|
|
2022-11-25 13:26:10 +03:00
|
|
|
- uses: msys2/setup-msys2@d40200dc2db4c351366b048a9565ad82919e1c24 # v2
|
2021-08-25 20:49:49 +03:00
|
|
|
id: setup-msys2
|
2021-08-26 05:06:55 +03:00
|
|
|
with:
|
|
|
|
update: true
|
|
|
|
install: >-
|
2023-10-15 07:53:20 +03:00
|
|
|
${{ steps.find-tools.outputs.needs }}
|
|
|
|
if: ${{ steps.find-tools.outputs.needs != '' }}
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2024-06-18 05:19:34 +03:00
|
|
|
- uses: ruby/setup-ruby@3783f195e29b74ae398d7caca108814bbafde90e # v1.180.1
|
2024-01-22 20:49:52 +03:00
|
|
|
with:
|
2024-02-16 10:13:45 +03:00
|
|
|
ruby-version: '3.0'
|
2024-01-22 20:49:52 +03:00
|
|
|
bundler: none
|
|
|
|
windows-toolchain: none
|
|
|
|
|
2024-06-21 08:42:22 +03:00
|
|
|
- name: Export GitHub Actions cache environment variables
|
|
|
|
uses: actions/github-script@v7
|
2019-11-12 05:27:55 +03:00
|
|
|
with:
|
2024-06-21 08:42:22 +03:00
|
|
|
script: |
|
|
|
|
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
|
|
|
|
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2019-08-12 12:06:06 +03:00
|
|
|
- name: Install libraries with vcpkg
|
|
|
|
run: |
|
2024-06-05 03:00:17 +03:00
|
|
|
vcpkg --triplet x64-windows install gmp libffi libyaml openssl zlib
|
2024-06-21 08:42:22 +03:00
|
|
|
env:
|
|
|
|
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-03-29 10:48:16 +03:00
|
|
|
- name: Install libraries with scoop
|
2019-09-03 15:03:10 +03:00
|
|
|
run: |
|
2023-03-29 10:48:16 +03:00
|
|
|
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
|
2023-03-29 11:32:42 +03:00
|
|
|
Join-Path (Resolve-Path ~).Path "scoop\shims" >> $Env:GITHUB_PATH
|
2021-05-11 07:17:33 +03:00
|
|
|
shell: pwsh
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2024-06-13 05:39:34 +03:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2020-05-11 12:37:08 +03:00
|
|
|
with:
|
2023-06-30 16:19:35 +03:00
|
|
|
sparse-checkout-cone-mode: false
|
|
|
|
sparse-checkout: /.github
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-06-30 16:19:35 +03:00
|
|
|
- uses: ./.github/actions/setup/directories
|
2021-12-02 16:21:20 +03:00
|
|
|
with:
|
2023-06-30 16:19:35 +03:00
|
|
|
srcdir: src
|
|
|
|
builddir: build
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-08-25 19:01:53 +03:00
|
|
|
- name: setup env
|
2024-01-17 02:54:17 +03:00
|
|
|
# Available Ruby versions: https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md#ruby
|
2021-08-25 19:01:53 +03:00
|
|
|
# %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 }}
|
2024-01-09 11:12:11 +03:00
|
|
|
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"
|
2021-08-25 19:01:53 +03:00
|
|
|
set | C:\msys64\usr\bin\sort > old.env
|
2024-01-09 11:12:11 +03:00
|
|
|
call %VCVARS% ${{ matrix.vcvars || '' }}
|
2023-08-11 15:52:38 +03:00
|
|
|
nmake -f nul
|
2021-08-25 19:01:53 +03:00
|
|
|
set TMP=%USERPROFILE%\AppData\Local\Temp
|
|
|
|
set TEMP=%USERPROFILE%\AppData\Local\Temp
|
2023-08-11 15:52:38 +03:00
|
|
|
set MAKEFLAGS=l
|
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
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2024-01-17 02:54:17 +03:00
|
|
|
- name: baseruby version
|
|
|
|
run: ruby -v
|
|
|
|
|
2022-08-22 10:59:00 +03:00
|
|
|
- name: compiler version
|
|
|
|
run: cl
|
2023-07-03 16:02:43 +03:00
|
|
|
|
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
|
|
|
|
)
|
2023-09-15 01:02:10 +03:00
|
|
|
# We use OpenSSL instealled by vcpkg instead
|
|
|
|
- name: disable system OpenSSL
|
|
|
|
run: |
|
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_
|
|
|
|
)
|
2023-09-15 01:02:10 +03:00
|
|
|
# windows-2019 image doesn't have OpenSSL as of 2023/9/14
|
|
|
|
if: ${{ matrix.vs != 2019 }}
|
2023-07-03 16:02:43 +03:00
|
|
|
|
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
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake incs
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake extract-extlibs
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2024-02-13 13:29:04 +03:00
|
|
|
# On all other platforms, test-spec depending on extract-gems (in common.mk) is enough.
|
|
|
|
# But not for this Visual Studio workflow. So here we extract gems before building.
|
|
|
|
- run: nmake extract-gems
|
|
|
|
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-11-06 19:34:51 +03:00
|
|
|
- run: nmake test
|
2021-05-12 01:18:44 +03:00
|
|
|
timeout-minutes: 5
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-08-11 15:52:38 +03:00
|
|
|
- run: nmake test-spec
|
2022-09-21 16:01:16 +03:00
|
|
|
timeout-minutes: 10
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2021-11-07 07:35:40 +03:00
|
|
|
- run: nmake test-all
|
|
|
|
env:
|
2023-07-03 16:36:05 +03:00
|
|
|
RUBY_TESTOPTS: -j${{ env.TEST_JOBS || 4 }} --job-status=normal
|
2021-05-12 01:18:44 +03:00
|
|
|
timeout-minutes: 60
|
2023-07-03 16:02:43 +03:00
|
|
|
|
2023-06-30 16:19:35 +03:00
|
|
|
- uses: ./.github/actions/slack
|
2020-03-07 11:34:41 +03:00
|
|
|
with:
|
2024-01-09 11:12:11 +03:00
|
|
|
label: VS${{ matrix.vc || matrix.vs }} / ${{ matrix.test_task || 'check' }}
|
2020-03-10 08:31:50 +03:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2023-09-21 06:17:01 +03:00
|
|
|
if: ${{ failure() }}
|
2020-10-19 09:32:39 +03:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|
|
|
|
shell: cmd
|