ruby/.github/workflows/windows.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

215 строки
6.7 KiB
YAML
Исходник Обычный вид История

name: Windows
on:
push:
paths-ignore:
- 'doc/**'
2024-05-09 04:45:45 +03:00
- '**/man/*'
- '**.md'
- '**.rdoc'
- '**/.document'
- '.*.yml'
pull_request:
paths-ignore:
- 'doc/**'
2024-05-09 04:45:45 +03:00
- '**/man/*'
- '**.md'
- '**.rdoc'
- '**/.document'
- '.*.yml'
2023-03-28 15:01:44 +03:00
merge_group:
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') }}
permissions:
contents: read
jobs:
make:
2019-08-12 12:56:01 +03:00
strategy:
matrix:
include:
- vc: 2015
vs: 2019
vcvars: '10.0.14393.0 -vcvars_ver=14.0' # The oldest Windows 10 SDK w/ VC++ 2015 toolset (v140)
- vs: 2019
2021-12-04 13:56:01 +03:00
- vs: 2022
fail-fast: false
runs-on: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
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')
2024-08-22 10:38:50 +03:00
|| (github.event_name == 'push' && github.event.pull_request.user.login == 'dependabot[bot]')
2023-07-13 07:17:44 +03:00
)}}
name: VisualStudio ${{ matrix.vc || matrix.vs }}
env:
GITPULLOPTIONS: --no-tags origin ${{ github.ref }}
OS_VER: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
2024-07-14 13:09:13 +03:00
VCPKG_DEFAULT_TRIPLET: ${{ matrix.target || 'x64' }}-windows
steps:
- run: md build
working-directory:
- name: find tools
id: find-tools
run: |
::- find needed tools
set NEEDS=
for %%I in (%NEEDED_TOOLS%) do if "%%~$PATH:I" == "" (
call set NEEDS=%%NEEDS%% %%~nI
) else (
echo %%I: %%~$PATH:I
)
echo.needs=%NEEDS%>>%GITHUB_OUTPUT%
if "%NEEDS%" == "" (
echo [debug] All needed tools found
) else (
echo [warning^]Needs%NEEDS%
)
env:
NEEDED_TOOLS: >-
patch.exe
- uses: msys2/setup-msys2@d40200dc2db4c351366b048a9565ad82919e1c24 # v2
2021-08-25 20:49:49 +03:00
id: setup-msys2
with:
update: true
install: >-
2023-10-15 07:53:20 +03:00
${{ steps.find-tools.outputs.needs }}
if: ${{ steps.find-tools.outputs.needs != '' }}
- uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0
with:
ruby-version: '3.0'
bundler: none
windows-toolchain: none
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
2019-11-12 05:27:55 +03:00
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Install libraries with scoop
run: |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
2023-03-29 11:32:42 +03:00
Join-Path (Resolve-Path ~).Path "scoop\shims" >> $Env:GITHUB_PATH
shell: pwsh
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2020-05-11 12:37:08 +03:00
with:
sparse-checkout-cone-mode: false
sparse-checkout: /.github
- uses: ./.github/actions/setup/directories
with:
srcdir: src
builddir: build
2021-08-25 19:01:53 +03:00
- name: setup env
# 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
run: |
set VS=${{ matrix.vs }}
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
call %VCVARS% ${{ matrix.vcvars || '' }}
nmake -f nul
2021-08-25 19:01:53 +03:00
set TMP=%USERPROFILE%\AppData\Local\Temp
set TEMP=%USERPROFILE%\AppData\Local\Temp
set MAKEFLAGS=l
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
- name: baseruby version
run: ruby -v
- name: compiler version
run: cl
2024-06-24 02:38:42 +03:00
- name: Install libraries with vcpkg
run: |
2024-07-14 13:09:13 +03:00
vcpkg install
working-directory: src
2024-06-24 02:38:42 +03:00
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
2024-06-24 03:20:43 +03:00
# TODO: We should use `../src` instead of `D:/a/ruby/ruby/src`
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
2024-07-14 13:09:13 +03:00
--with-opt-dir=D:/a/ruby/ruby/src/vcpkg_installed/%VCPKG_DEFAULT_TRIPLET%
- run: nmake prepare-vcpkg
- run: nmake incs
- run: nmake extract-extlibs
# 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
- run: nmake
- run: nmake test
timeout-minutes: 5
- run: nmake test-spec
timeout-minutes: 10
2024-07-29 10:43:53 +03:00
- name: Set up Launchable
uses: ./.github/actions/launchable/setup
with:
os: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }}
test-task: test-all
# If we support a new test task, we need to change this test-opts.
test-opts: -j${{ env.TEST_JOBS || 4 }} --job-status=normal
launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }}
builddir: build
srcdir: src
continue-on-error: true
- run: nmake test-all
env:
2024-07-29 10:43:53 +03:00
RUBY_TESTOPTS: >-
-j${{ env.TEST_JOBS || 4 }}
--job-status=normal
timeout-minutes: 60
- uses: ./.github/actions/slack
with:
label: VS${{ matrix.vc || matrix.vs }} / ${{ matrix.test_task || 'check' }}
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
if: ${{ failure() }}
2024-08-22 03:47:13 +03:00
result:
if: ${{ always() }}
name: ${{ github.workflow }} result
runs-on: windows-latest
needs: [make]
steps:
- run: exit 1
working-directory:
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
defaults:
run:
working-directory: build
shell: cmd