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/mingw.yml

147 lines
4.7 KiB
YAML
Raw Normal View History

name: MinGW
on:
push:
paths-ignore:
- 'doc/**'
- '**.md'
- '**.rdoc'
pull_request:
paths-ignore:
- 'doc/**'
- '**.md'
- '**.rdoc'
# Notes:
# Actions console encoding causes issues, see test-all & test-spec steps
#
jobs:
make:
runs-on: windows-2019
env:
MSYSTEM: ${{ matrix.msystem }}
MSYS2_ARCH: x86_64
CHOST: "x86_64-w64-mingw32"
CFLAGS: "-march=x86-64 -mtune=generic -O3 -pipe -fstack-protector-strong"
CXXFLAGS: "-march=x86-64 -mtune=generic -O3 -pipe"
CPPFLAGS: "-D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048"
LDFLAGS: "-pipe -fstack-protector-strong"
UPDATE_UNICODE: "UNICODE_FILES=. UNICODE_PROPERTY_FILES=. UNICODE_AUXILIARY_FILES=. UNICODE_EMOJI_FILES=."
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
strategy:
matrix:
include:
- msystem: "MINGW64"
base_ruby: 2.6
test_task: [ "check" ] # to make job names consistent
- msystem: "UCRT64"
base_ruby: head
test_task: [ "check" ] # to make job names consistent
fail-fast: false
steps:
- run: mkdir build
working-directory:
- name: git config
run: |
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 05:37:08 -04:00
- uses: actions/checkout@v2
with:
path: src
- name: Set up Ruby & MSYS2
uses: MSP-Greg/setup-ruby-pkgs@ucrt
with:
ruby-version: ${{ matrix.base_ruby }}
setup-ruby-ref: MSP-Greg/ruby-setup-ruby/00-win-ucrt
mingw: _upgrade_ gmp libffi libyaml openssl ragel readline gcc
msys2: automake1.16 bison
2021-02-07 10:02:20 -05:00
- name: set env
run: |
$build_jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
$test_jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
Write-Output "BUILD_JOBS=$build_jobs" >> $env:GITHUB_ENV
Write-Output "TEST_JOBS=$test_jobs" >> $env:GITHUB_ENV
- name: where check
run: |
# show where
Write-Host
$where = 'gcc.exe', 'ragel.exe', 'make.exe', 'bison.exe', 'libcrypto-1_1-x64.dll', 'libssl-1_1-x64.dll'
foreach ($e in $where) {
$rslt = where.exe $e 2>&1 | Out-String
if ($rslt.contains($e)) { Write-Host $rslt }
else { Write-Host "`nCan't find $e" }
}
2021-11-07 01:34:29 -05:00
- name: autogen
run: |
2021-11-07 01:34:29 -05:00
./autogen.sh
working-directory: src
shell: sh
- name: configure
run: |
$config_args = "--build=$env:CHOST --host=$env:CHOST --target=$env:CHOST"
Write-Host $config_args
sh -c "../src/configure --disable-install-doc --prefix=/. $config_args"
# Write-Host "-------------------------------------- config.log"
# Get-Content ./config.log | foreach {Write-Output $_}
- name: update
run: |
2021-02-07 10:02:20 -05:00
make -j $env:BUILD_JOBS incs
- name: download gems
run: |
2021-02-07 10:02:20 -05:00
make -j $env:BUILD_JOBS update-gems
2019-12-31 02:42:20 -05:00
- name: make all
timeout-minutes: 20
run: |
2021-02-07 10:02:20 -05:00
make -j $env:BUILD_JOBS
- run: make leaked-globals
- name: make install
run: |
make DESTDIR=../install install-nodoc
- name: test
timeout-minutes: 5
run: |
make test
- name: test-all
timeout-minutes: 40
run: |
# Actions uses UTF8, causes test failures, similar to normal OS setup
chcp.com 437
if ($env:BUNDLER_VERSION) { Remove-Item env:\BUNDLER_VERSION }
2021-02-07 10:02:20 -05:00
make test-all TESTOPTS="-j $env:TEST_JOBS --retry --job-status=normal --show-skip --timeout-scale=1.5"
- name: test-spec
timeout-minutes: 10
working-directory: src/spec/ruby
run: |
$env:Path = "$pwd/../../../install/bin;$env:Path"
ruby -v
ruby ../mspec/bin/mspec -I../../tool/lib -j --timeout 60
2019-12-31 02:46:17 -05:00
- uses: k0kubun/action-slack@v2.0.0
with:
payload: |
{
"ci": "GitHub Actions",
"env": "${{ github.workflow }} / ${{ 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-01 22:39:38 -04:00
if: ${{ failure() && github.event_name == 'push' }}
defaults:
run:
working-directory: build