ruby--ruby/.github/workflows/windows.yml

136 lines
4.9 KiB
YAML
Raw Normal View History

name: Windows
on:
push:
paths-ignore:
- 'doc/**'
- '**.md'
- '**.rdoc'
pull_request:
paths-ignore:
- 'doc/**'
- '**.md'
- '**.rdoc'
concurrency:
2021-11-21 10:17:27 +00:00
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }}
jobs:
make:
2019-08-12 09:56:01 +00:00
strategy:
matrix:
include:
- vs: 2019
os: windows-2019
vcvars: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
# - vs: 2022
# os: windows-2022
# vcvars: '"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
fail-fast: false
2019-08-12 09:56:01 +00:00
runs-on: ${{ matrix.os }}
if: ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
name: VisualStudio ${{ matrix.vs }}
env:
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
VCVARS: ${{ matrix.vcvars }}
2021-08-25 17:49:49 +00:00
PATCH: C:\msys64\usr\bin\patch.exe
steps:
- run: md build
working-directory:
- uses: msys2/setup-msys2@v2
2021-08-25 17:49:49 +00:00
id: setup-msys2
with:
update: true
install: >-
patch
2021-08-25 17:49:49 +00:00
if: ${{ matrix.os != 'windows-2019' }}
- name: patch path
shell: msys2 {0}
run: echo PATCH=$(cygpath -wa $(command -v patch)) >> $GITHUB_ENV
if: ${{ steps.setup-msys2.outcome == 'success' }}
- uses: actions/cache@v2
2019-11-12 02:27:55 +00:00
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
2019-11-12 02:27:55 +00:00
restore-keys: |
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
2019-11-12 02:27:55 +00:00
${{ runner.os }}-vcpkg-download-
- name: Install libraries with vcpkg
run: |
2021-08-26 05:05:34 +00:00
vcpkg --triplet x64-windows install readline zlib
- uses: actions/cache@v2
2019-11-12 02:27:55 +00:00
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
2019-11-12 02:27:55 +00:00
restore-keys: |
${{ runner.os }}-chocolatey-${{ matrix.os }}-
2019-11-12 02:27:55 +00:00
${{ runner.os }}-chocolatey-
- name: Install libraries with chocolatey
run: |
# 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 openssl
Choco-Install -PackageName winflexbison3
shell: pwsh
2020-06-03 23:33:04 +00:00
- name: git config
run: |
2021-02-02 00:55:15 +00:00
git config --global core.autocrlf false
git config --global core.eol lf
git config --global advice.detachedHead 0
git config --global init.defaultBranch garbage
2020-05-11 09:37:08 +00:00
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
with:
path: src/.downloaded-cache
key: downloaded-cache
2021-08-25 16:01:53 +00: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
run: |
2021-08-25 16:01:53 +00:00
set | C:\msys64\usr\bin\sort > old.env
2021-08-25 02:51:45 +00:00
call %VCVARS%
2021-08-25 16:01:53 +00:00
set TMP=%USERPROFILE%\AppData\Local\Temp
set TEMP=%USERPROFILE%\AppData\Local\Temp
set /a TEST_JOBS=(15 * %NUMBER_OF_PROCESSORS% / 10) > nul
2021-08-25 16:01:53 +00:00
set | C:\msys64\usr\bin\sort > new.env
C:\msys64\usr\bin\comm -13 old.env new.env >> %GITHUB_ENV%
del *.env
- name: Configure
run: |
2021-08-25 17:09:25 +00:00
../src/win32/configure.bat --disable-install-doc --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
- run: nmake incs
- run: nmake extract-extlibs
- run: nmake
2021-08-25 17:09:25 +00:00
env:
YACC: win_bison
- run: nmake test
timeout-minutes: 5
- run: nmake test-all
env:
RUBY_TESTOPTS: -j${{env.TEST_JOBS}} --job-status=normal
timeout-minutes: 60
2021-08-29 16:25:22 +00:00
continue-on-error: ${{ matrix.continue-on-error || false }}
- run: nmake test-spec
timeout-minutes: 10
2021-08-29 16:25:22 +00:00
continue-on-error: ${{ matrix.continue-on-error || false }}
- uses: k0kubun/action-slack@v2.0.0
with:
payload: |
{
"ci": "GitHub Actions",
"env": "VS${{ matrix.vs }} / ${{ matrix.test_task || 'check' }}",
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"commit": "${{ github.sha }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
2021-08-02 02:39:38 +00:00
if: ${{ failure() && github.event_name == 'push' }}
defaults:
run:
working-directory: build
shell: cmd