io: reduce IO_CBUF_CAPA_MIN to 8KB to lower memory usage #741
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Cygwin | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'doc/**' | |
| - '**/man/*' | |
| - '**.md' | |
| - '**.rdoc' | |
| - '**/.document' | |
| - '.*.yml' | |
| pull_request: | |
| paths-ignore: | |
| - 'doc/**' | |
| - '**/man/*' | |
| - '**.md' | |
| - '**.rdoc' | |
| - '**/.document' | |
| - '.*.yml' | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }} | |
| cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| make: | |
| runs-on: windows-2022 | |
| if: >- | |
| ${{!(false | |
| || contains(github.event.head_commit.message, '[DOC]') | |
| || contains(github.event.pull_request.title, '[DOC]') | |
| || contains(github.event.pull_request.labels.*.name, 'Documentation') | |
| || (github.event.pull_request.user.login == 'dependabot[bot]') | |
| )}} | |
| steps: | |
| - run: git config --global core.autocrlf input | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Cygwin | |
| uses: cygwin/cygwin-install-action@3f0a3f9f988f7e96b8c18098ae05eaec175f5b52 # v6.1 | |
| with: | |
| packages: ruby gcc-core make autoconf libtool libssl-devel libyaml-devel libffi-devel zlib-devel rubygems ruby-devel | |
| site: | | |
| https://cygwin.osuosl.org/ | |
| - name: Install fiddle | |
| run: | | |
| gem install fiddle | |
| shell: C:\cygwin\bin\bash.EXE --noprofile --norc -e -o igncr -o pipefail {0} | |
| - name: configure | |
| run: | | |
| ./autogen.sh | |
| ./configure --disable-install-doc | |
| shell: C:\cygwin\bin\bash.EXE --noprofile --norc -e -o igncr -o pipefail {0} | |
| - name: Extract bundled gems | |
| run: | | |
| make ruby -j5 | |
| make extract-gems | |
| shell: C:\cygwin\bin\bash.EXE --noprofile --norc -e -o igncr -o pipefail {0} | |
| - name: make all | |
| timeout-minutes: 30 | |
| run: make -j4 V=1 | |
| shell: C:\cygwin\bin\bash.EXE --noprofile --norc -e -o igncr -o pipefail {0} | |
| - uses: ./.github/actions/slack | |
| with: | |
| label: Cygwin | |
| SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot | |
| if: ${{ failure() }} |