ruby-changes:58996
From: Kazuhiro <ko1@a...>
Date: Sun, 1 Dec 2019 00:25:01 +0900 (JST)
Subject: [ruby-changes:58996] 2eb4afb10b (master): Add extract-gems to GitHub Actions CI
https://git.ruby-lang.org/ruby.git/commit/?id=2eb4afb10b From 2eb4afb10bd9a3849eb34292f33240ac3ef19905 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA <zn@m...> Date: Wed, 13 Nov 2019 19:45:14 +0900 Subject: Add extract-gems to GitHub Actions CI diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 045beb0..2b4612d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -55,6 +55,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L55 ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1...) --with-readline-dir=$(brew --prefix readline) - name: Make run: make -C build $JOBS + - name: Extract gems + run: make -C build extract-gems - name: Tests run: make -C build $JOBS -s ${{ matrix.test_task }} env: diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c6bcca0..ba5ab9a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -84,6 +84,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L84 ../src/configure -C --disable-install-doc - name: Make run: make -C build $JOBS + - name: Extract gems + run: make -C build extract-gems - name: Tests run: make -C build $JOBS -s ${{ matrix.test_task }} env: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 20d2c1b..f256e5f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -63,7 +63,9 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L63 call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat" set YACC=win_bison cd build + echo on nmake up + nmake extract-gems nmake shell: cmd - name: nmake test -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/