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

73 lines
2.5 KiB
YAML
Raw Normal View History

2019-12-06 23:53:25 +09:00
name: Cygwin
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
make:
strategy:
matrix:
test_task: [test]
os: [windows-2019]
vs: [2019]
fail-fast: false
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/cache@v1
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
2019-12-09 14:29:38 +09:00
key: ${{ runner.os }}-cygwin-chocolatey-${{ matrix.os }}-${{ github.sha }}
2019-12-06 23:53:25 +09:00
restore-keys: |
2019-12-09 14:29:38 +09:00
${{ runner.os }}-cygwin-chocolatey-${{ matrix.os }}-
${{ runner.os }}-cygwin-chocolatey-
2019-12-06 23:53:25 +09:00
- name: Install cygwin base packages with chocolatey
run: |
choco install --no-progress cygwin
- name: Install cygwin additional packages
run: |
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P autoconf,bison,gcc-core,git,libcrypt-devel,libedit-devel,libffi-devel,libgdbm-devel,libgmp-devel,libintl-devel,libncurses-devel,libreadline-devel,libssl-devel,libuuid-devel,make,patch,ruby,tcl-tk-devel,zlib-devel
shell: cmd
2019-12-08 23:00:46 +09:00
- name: Set ENV
run: |
echo '::set-env name=PATH::C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin'
2019-12-06 23:53:25 +09:00
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
run: |
2019-12-08 23:09:39 +09:00
git clone --single-branch --shallow-since=yesterday https://github.com/ruby/ruby src
git -C src reset --hard ${{ github.sha }}
2019-12-06 23:53:25 +09:00
if: github.event_name == 'push'
shell: cmd
- name: Checkout a pull request
run: |
2019-12-08 23:09:39 +09:00
git clone --single-branch --shallow-since=yesterday --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} src
git -C src reset --hard ${{ github.event.pull_request.head.sha }}
2019-12-06 23:53:25 +09:00
if: github.event_name == 'pull_request'
shell: cmd
- name: Actions-commit-info.sh
run: |
bash.exe -c "./src/tool/actions-commit-info.sh"
shell: cmd
2019-12-08 23:37:04 +09:00
- name: Autoconf
2019-12-06 23:53:25 +09:00
run: |
2019-12-08 23:37:04 +09:00
cd src
bash.exe -c autoconf
shell: cmd
- name: Configure
run: |
md build
cd build
bash -c ../src/configure
shell: cmd
- name: make
run: |
make -C build
shell: cmd
- name: make btest
run: |
make -C build btest
2019-12-06 23:53:25 +09:00
shell: cmd