2019-12-31 10:30:34 +03:00
|
|
|
name: MinGW
|
2021-10-28 18:02:07 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
2022-12-20 07:31:36 +03:00
|
|
|
- '**/man'
|
2021-10-28 18:02:07 +03:00
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
2022-08-22 12:08:05 +03:00
|
|
|
- '**/.document'
|
2021-10-28 18:02:07 +03:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
2022-12-20 07:31:36 +03:00
|
|
|
- '**/man'
|
2021-10-28 18:02:07 +03:00
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
2022-08-22 12:08:05 +03:00
|
|
|
- '**/.document'
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2021-11-18 16:21:05 +03:00
|
|
|
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') }}
|
2021-11-18 16:21:05 +03:00
|
|
|
|
2022-11-28 10:50:41 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-12-31 10:19:31 +03:00
|
|
|
# Notes:
|
2020-04-19 03:35:19 +03:00
|
|
|
# Actions console encoding causes issues, see test-all & test-spec steps
|
2019-12-31 10:19:31 +03:00
|
|
|
#
|
|
|
|
jobs:
|
2019-12-31 10:30:34 +03:00
|
|
|
make:
|
2021-11-23 04:49:12 +03:00
|
|
|
runs-on: windows-2022
|
2021-11-07 11:03:40 +03:00
|
|
|
name: ${{ github.workflow }} (${{ matrix.msystem }})
|
2019-12-31 10:19:31 +03:00
|
|
|
env:
|
2021-06-23 11:17:52 +03:00
|
|
|
MSYSTEM: ${{ matrix.msystem }}
|
2019-12-31 10:19:31 +03:00
|
|
|
MSYS2_ARCH: x86_64
|
|
|
|
CHOST: "x86_64-w64-mingw32"
|
2022-10-30 12:22:50 +03:00
|
|
|
CFLAGS: "-march=x86-64 -mtune=generic -O3 -pipe"
|
2019-12-31 10:19:31 +03:00
|
|
|
CXXFLAGS: "-march=x86-64 -mtune=generic -O3 -pipe"
|
|
|
|
CPPFLAGS: "-D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048"
|
2022-10-30 12:22:50 +03:00
|
|
|
LDFLAGS: "-pipe"
|
2020-06-04 04:26:40 +03:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
2019-12-31 10:19:31 +03:00
|
|
|
strategy:
|
2019-12-31 10:30:34 +03:00
|
|
|
matrix:
|
2021-06-23 11:17:52 +03:00
|
|
|
include:
|
2022-10-14 19:16:21 +03:00
|
|
|
# To mitigate flakiness of MinGW CI, we test only one runtime that newer MSYS2 uses.
|
2021-06-23 11:17:52 +03:00
|
|
|
- msystem: "UCRT64"
|
|
|
|
base_ruby: head
|
2022-07-01 12:15:36 +03:00
|
|
|
test_task: "check"
|
2022-07-05 05:35:14 +03:00
|
|
|
test-all-opts: "--name=!/TestObjSpace#test_reachable_objects_during_iteration/"
|
2019-12-31 10:19:31 +03:00
|
|
|
fail-fast: false
|
2022-06-19 05:05:31 +03:00
|
|
|
if: ${{ !contains(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
|
2019-12-31 10:19:31 +03:00
|
|
|
steps:
|
2020-10-19 09:32:39 +03:00
|
|
|
- run: mkdir build
|
|
|
|
working-directory:
|
2019-12-31 10:19:31 +03:00
|
|
|
- name: git config
|
|
|
|
run: |
|
2021-02-02 08:37:15 +03:00
|
|
|
git config --global core.autocrlf false
|
|
|
|
git config --global core.eol lf
|
|
|
|
git config --global advice.detachedHead 0
|
2021-03-08 06:42:48 +03:00
|
|
|
git config --global init.defaultBranch garbage
|
2023-02-01 05:02:33 +03:00
|
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2020-05-11 12:37:08 +03:00
|
|
|
with:
|
|
|
|
path: src
|
2023-02-22 05:26:36 +03:00
|
|
|
- uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.6
|
2021-12-02 16:21:20 +03:00
|
|
|
with:
|
|
|
|
path: src/.downloaded-cache
|
|
|
|
key: downloaded-cache
|
2019-12-31 10:19:31 +03:00
|
|
|
- name: Set up Ruby & MSYS2
|
2023-03-06 06:04:11 +03:00
|
|
|
uses: ruby/setup-ruby@31a7f6d628878b80bc63375a93ae079ec50a1601 # v1.143.0
|
2019-12-31 10:19:31 +03:00
|
|
|
with:
|
2021-06-23 11:17:52 +03:00
|
|
|
ruby-version: ${{ matrix.base_ruby }}
|
2021-02-07 18:02:20 +03:00
|
|
|
- name: set env
|
|
|
|
run: |
|
2021-11-07 09:57:14 +03:00
|
|
|
echo "GNUMAKEFLAGS=-j$((2 * NUMBER_OF_PROCESSORS))" >> $GITHUB_ENV
|
|
|
|
|
2019-12-31 10:19:31 +03:00
|
|
|
- name: where check
|
|
|
|
run: |
|
|
|
|
# show where
|
2022-01-14 18:00:56 +03:00
|
|
|
mv /c/Windows/System32/libcrypto-1_1-x64.dll /c/Windows/System32/libcrypto-1_1-x64.dll_
|
|
|
|
mv /c/Windows/System32/libssl-1_1-x64.dll /c/Windows/System32/libssl-1_1-x64.dll_
|
2021-11-07 09:57:14 +03:00
|
|
|
result=true
|
|
|
|
for e in gcc.exe ragel.exe make.exe bison.exe libcrypto-1_1-x64.dll libssl-1_1-x64.dll; do
|
2021-11-07 08:21:55 +03:00
|
|
|
echo '##['group']'$'\033[93m'$e$'\033[m'
|
2021-11-07 09:57:14 +03:00
|
|
|
where $e || result=false
|
2021-11-07 08:21:55 +03:00
|
|
|
echo '##['endgroup']'
|
2021-11-07 09:57:14 +03:00
|
|
|
done
|
|
|
|
$result
|
2021-11-07 09:34:29 +03:00
|
|
|
|
2022-01-14 09:48:27 +03:00
|
|
|
- name: version check
|
|
|
|
run: |
|
|
|
|
# show version
|
|
|
|
result=true
|
|
|
|
for e in gcc ragel make bison "openssl version"; do
|
|
|
|
case "$e" in *" "*) ;; *) e="$e --version";; esac
|
|
|
|
echo '##['group']'$'\033[93m'$e$'\033[m'
|
|
|
|
$e || result=false
|
|
|
|
echo '##['endgroup']'
|
|
|
|
done
|
|
|
|
$result
|
|
|
|
|
2021-11-07 09:34:29 +03:00
|
|
|
- name: autogen
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
2021-11-07 09:34:29 +03:00
|
|
|
./autogen.sh
|
|
|
|
working-directory: src
|
2019-12-31 10:19:31 +03:00
|
|
|
|
|
|
|
- name: configure
|
2021-11-07 09:57:14 +03:00
|
|
|
run: >
|
|
|
|
../src/configure --disable-install-doc --prefix=/.
|
|
|
|
--build=$CHOST --host=$CHOST --target=$CHOST
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2020-06-16 05:44:31 +03:00
|
|
|
- name: update
|
|
|
|
run: |
|
2021-11-07 09:50:25 +03:00
|
|
|
make incs
|
2020-06-16 05:44:31 +03:00
|
|
|
|
|
|
|
- name: download gems
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
2021-11-07 09:50:25 +03:00
|
|
|
make update-gems
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2019-12-31 10:42:20 +03:00
|
|
|
- name: make all
|
2022-09-13 04:48:31 +03:00
|
|
|
timeout-minutes: 30
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
2021-11-07 09:50:25 +03:00
|
|
|
make
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2020-12-25 17:44:01 +03:00
|
|
|
- run: make leaked-globals
|
|
|
|
|
2019-12-31 10:19:31 +03:00
|
|
|
- name: make install
|
|
|
|
run: |
|
2021-11-07 09:31:34 +03:00
|
|
|
make DESTDIR=../install install-nodoc
|
2019-12-31 10:19:31 +03:00
|
|
|
|
|
|
|
- name: test
|
2023-03-03 02:05:39 +03:00
|
|
|
timeout-minutes: 10
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
2020-02-26 07:12:46 +03:00
|
|
|
make test
|
2022-07-01 12:15:36 +03:00
|
|
|
if: ${{matrix.test_task == 'check' || matrix.test_task == 'test'}}
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2019-12-31 21:24:00 +03:00
|
|
|
- name: test-all
|
2021-11-23 04:49:12 +03:00
|
|
|
timeout-minutes: 45
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
|
|
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
2021-11-07 09:43:11 +03:00
|
|
|
chcp.com 437
|
2022-07-29 02:12:46 +03:00
|
|
|
make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }}
|
2021-11-07 09:46:16 +03:00
|
|
|
env:
|
2022-07-04 06:21:30 +03:00
|
|
|
RUBY_TESTOPTS: >-
|
2022-09-11 04:14:56 +03:00
|
|
|
--retry --job-status=normal --show-skip --timeout-scale=1.5
|
2022-07-04 06:21:30 +03:00
|
|
|
${{ matrix.test-all-opts }}
|
2021-11-07 09:46:16 +03:00
|
|
|
BUNDLER_VERSION:
|
2022-07-01 12:15:36 +03:00
|
|
|
if: ${{matrix.test_task == 'check' || matrix.test_task == 'test-all' || StartsWith(matrix.test_task, 'test/')}}
|
2019-12-31 10:19:31 +03:00
|
|
|
|
2019-12-31 21:24:00 +03:00
|
|
|
- name: test-spec
|
|
|
|
timeout-minutes: 10
|
2019-12-31 10:19:31 +03:00
|
|
|
run: |
|
2022-07-01 12:15:36 +03:00
|
|
|
make ${{ StartsWith(matrix.test_task, 'spec/') && matrix.test_task || 'test-spec' }}
|
|
|
|
if: ${{matrix.test_task == 'check' || matrix.test_task == 'test-spec' || StartsWith(matrix.test_task, 'spec/')}}
|
2019-12-31 10:46:17 +03:00
|
|
|
|
2022-11-25 13:26:10 +03:00
|
|
|
- uses: ruby/action-slack@b6882ea6ef8f556f9f9af9ec1220d3f1ced74acf # v3.0.0
|
2020-03-07 11:34:41 +03:00
|
|
|
with:
|
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"ci": "GitHub Actions",
|
2021-12-28 13:24:20 +03:00
|
|
|
"env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ matrix.test_task }}",
|
2020-03-07 11:34:41 +03:00
|
|
|
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
2020-03-10 08:31:50 +03:00
|
|
|
"commit": "${{ github.sha }}",
|
2022-10-26 03:53:08 +03:00
|
|
|
"branch": "${{ github.ref_name }}"
|
2020-03-07 11:34:41 +03:00
|
|
|
}
|
|
|
|
env:
|
2020-03-10 08:31:50 +03:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2021-08-02 05:39:38 +03:00
|
|
|
if: ${{ failure() && github.event_name == 'push' }}
|
2020-10-19 09:32:39 +03:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|
2021-11-07 09:57:14 +03:00
|
|
|
shell: sh
|