2019-12-31 02:30:34 -05:00
|
|
|
name: MinGW
|
2020-02-25 22:52:07 -05:00
|
|
|
on: [push, pull_request]
|
2019-12-31 02:19:31 -05:00
|
|
|
|
|
|
|
# Notes:
|
2020-04-18 20:35:19 -04:00
|
|
|
# Actions console encoding causes issues, see test-all & test-spec steps
|
2019-12-31 02:19:31 -05:00
|
|
|
#
|
|
|
|
jobs:
|
2019-12-31 02:30:34 -05:00
|
|
|
make:
|
2019-12-31 02:19:31 -05:00
|
|
|
runs-on: windows-2019
|
|
|
|
env:
|
|
|
|
MSYSTEM: MINGW64
|
|
|
|
MSYSTEM_PREFIX: /mingw64
|
|
|
|
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=."
|
2020-06-03 19:22:50 -04:00
|
|
|
GITPULLOPTIONS: --no-tags
|
2019-12-31 02:19:31 -05:00
|
|
|
strategy:
|
2019-12-31 02:30:34 -05:00
|
|
|
matrix:
|
2019-12-31 02:46:17 -05:00
|
|
|
test_task: [ "check" ] # to make job names consistent
|
2019-12-31 02:19:31 -05:00
|
|
|
fail-fast: false
|
|
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
|
|
steps:
|
|
|
|
- name: git config
|
|
|
|
run: |
|
|
|
|
git config --system core.autocrlf false
|
|
|
|
git config --system core.eol lf
|
2020-06-03 19:33:04 -04:00
|
|
|
git config --system advice.detachedHead 0
|
2020-05-11 05:37:08 -04:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
2019-12-31 02:19:31 -05:00
|
|
|
- run: ./src/tool/actions-commit-info.sh
|
|
|
|
shell: bash
|
|
|
|
id: commit_info
|
|
|
|
- name: Set up Ruby & MSYS2
|
2020-04-18 20:35:19 -04:00
|
|
|
uses: MSP-Greg/setup-ruby-pkgs@v1
|
2019-12-31 02:19:31 -05:00
|
|
|
with:
|
2020-04-18 20:35:19 -04:00
|
|
|
ruby-version: 2.6
|
|
|
|
mingw: _upgrade_ gdbm gmp libffi libyaml openssl ragel readline
|
2019-12-31 02:19:31 -05:00
|
|
|
msys2: automake1.16 bison
|
|
|
|
- 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" }
|
|
|
|
}
|
|
|
|
- name: misc setup, autoreconf
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
mkdir install
|
|
|
|
mkdir temp
|
|
|
|
cd src
|
2020-04-04 22:53:07 -04:00
|
|
|
sh -c "autoreconf -fi"
|
2019-12-31 02:19:31 -05:00
|
|
|
|
|
|
|
- name: configure
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
|
|
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
|
|
|
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
|
|
|
|
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
|
|
|
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
|
|
|
$config_args = "--build=$env:CHOST --host=$env:CHOST --target=$env:CHOST"
|
|
|
|
Write-Host $config_args
|
|
|
|
sh -c "../src/configure --disable-install-doc --prefix=/install $config_args"
|
|
|
|
# Write-Host "-------------------------------------- config.log"
|
|
|
|
# Get-Content ./config.log | foreach {Write-Output $_}
|
|
|
|
|
|
|
|
- name: download unicode, gems, etc
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
|
|
|
$jobs = [int]$env:NUMBER_OF_PROCESSORS + 1
|
|
|
|
make -j $jobs update-unicode
|
|
|
|
make -j $jobs update-gems
|
|
|
|
|
2019-12-31 02:42:20 -05:00
|
|
|
- name: make all
|
2020-04-08 00:28:13 -04:00
|
|
|
timeout-minutes: 40
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
|
|
|
$jobs = [int]$env:NUMBER_OF_PROCESSORS + 1
|
2020-04-03 11:09:12 -04:00
|
|
|
make -j $jobs
|
2019-12-31 02:19:31 -05:00
|
|
|
|
|
|
|
- name: make install
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
|
|
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
|
|
|
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
|
|
|
|
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
|
|
|
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
2020-02-25 23:12:46 -05:00
|
|
|
make DESTDIR=.. install-nodoc
|
2019-12-31 02:19:31 -05:00
|
|
|
|
|
|
|
- name: test
|
|
|
|
timeout-minutes: 5
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
2020-02-25 23:12:46 -05:00
|
|
|
make test
|
2019-12-31 02:19:31 -05:00
|
|
|
|
2019-12-31 13:24:00 -05:00
|
|
|
- name: test-all
|
2020-04-08 00:28:13 -04:00
|
|
|
timeout-minutes: 50
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
|
|
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
|
|
|
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
|
|
|
|
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
|
|
|
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
2019-12-31 13:24:00 -05:00
|
|
|
$jobs = [int]$env:NUMBER_OF_PROCESSORS
|
2020-02-25 23:12:46 -05:00
|
|
|
make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5"
|
2019-12-31 02:19:31 -05:00
|
|
|
|
2019-12-31 13:24:00 -05:00
|
|
|
- name: test-spec
|
|
|
|
timeout-minutes: 10
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: src/spec/ruby
|
2019-12-31 02:19:31 -05:00
|
|
|
run: |
|
2020-04-18 20:35:19 -04:00
|
|
|
$env:Path = "$pwd/../../../install/bin;$env:Path"
|
2019-12-31 02:19:31 -05:00
|
|
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
|
|
|
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
|
|
|
|
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
|
|
|
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
2019-12-31 13:24:00 -05:00
|
|
|
ruby -v
|
|
|
|
ruby ../mspec/bin/mspec -j
|
2019-12-31 02:46:17 -05:00
|
|
|
|
2020-03-07 03:34:41 -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 }}",
|
2020-03-10 01:31:50 -04:00
|
|
|
"commit": "${{ github.sha }}",
|
|
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
2020-03-07 03:34:41 -05:00
|
|
|
}
|
|
|
|
env:
|
2020-03-10 01:31:50 -04:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2020-03-07 03:34:41 -05:00
|
|
|
if: failure() && github.event_name == 'push'
|