1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/.github/workflows/windows.yml

113 lines
4.1 KiB
YAML
Raw Normal View History

name: Windows
on: [push, pull_request]
jobs:
make:
2019-08-12 18:56:01 +09:00
strategy:
matrix:
test_task: [check] # to make job names consistent
os: [windows-2019, windows-2022]
fail-fast: false
2019-08-12 18:56:01 +09:00
runs-on: ${{ matrix.os }}
env:
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
2021-02-02 09:55:15 +09:00
PATCH: C:\msys64\usr\bin\patch.exe
steps:
- run: md build
working-directory:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
patch
- uses: actions/cache@v2
2019-11-12 11:27:55 +09:00
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
2019-11-12 11:27:55 +09:00
restore-keys: |
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
2019-11-12 11:27:55 +09:00
${{ runner.os }}-vcpkg-download-
2021-08-25 11:51:45 +09:00
- name: Set VCVARS
run: |
IF ${{ matrix.os }}==windows-2022 (
echo VCVARS="C:\Program Files\Microsoft Visual Studio\2022\Preview\VC\Auxiliary\Build\vcvars64.bat" >> %GITHUB_ENV%
) ELSE IF ${{ matrix.os }}==windows-2019 (
echo VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" >> %GITHUB_ENV%
)
- name: Install libraries with vcpkg
run: |
2021-08-26 14:05:34 +09:00
vcpkg --triplet x64-windows install readline zlib
- uses: actions/cache@v2
2019-11-12 11:27:55 +09:00
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
2019-11-12 11:27:55 +09:00
restore-keys: |
${{ runner.os }}-chocolatey-${{ matrix.os }}-
2019-11-12 11:27:55 +09: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-04 08:33:04 +09:00
- name: git config
run: |
2021-02-02 09:55:15 +09: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 18:37:08 +09:00
- uses: actions/checkout@v2
with:
path: src
2019-10-28 18:31:00 +09:00
- name: Configure
run: |
2021-08-25 11:51:45 +09:00
call %VCVARS%
2021-08-26 14:05:34 +09: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"
2019-08-12 18:17:57 +09:00
- name: nmake
run: |
2021-08-25 11:51:45 +09:00
call %VCVARS%
2019-08-12 18:17:57 +09:00
set YACC=win_bison
2019-11-13 19:45:14 +09:00
echo on
nmake incs
nmake extract-extlibs
2019-08-12 18:17:57 +09:00
nmake
2019-08-12 19:08:51 +09:00
- name: nmake test
timeout-minutes: 5
2019-08-12 19:08:51 +09:00
run: |
2021-08-25 11:51:45 +09:00
call %VCVARS%
nmake test
- name: nmake test-all
timeout-minutes: 60
run: |
2021-08-25 11:51:45 +09:00
call %VCVARS%
::- %TEMP% is inconsistent with %TMP% and test-all expects they are consistent.
::- https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302
set TMP=%USERPROFILE%\AppData\Local\Temp
set TEMP=%USERPROFILE%\AppData\Local\Temp
nmake test-all
continue-on-error: ${{ matrix.os == 'windows-2022' }}
- name: nmake test-spec
timeout-minutes: 10
run: |
2021-08-25 11:51:45 +09:00
call %VCVARS%
nmake test-spec
continue-on-error: ${{ matrix.os == 'windows-2022' }}
- 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 }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
2021-08-02 11:39:38 +09:00
if: ${{ failure() && github.event_name == 'push' }}
defaults:
run:
working-directory: build
shell: cmd