[前][次][番号順一覧][スレッド一覧]

ruby-changes:59115

From: Nobuyoshi <ko1@a...>
Date: Mon, 9 Dec 2019 00:13:13 +0900 (JST)
Subject: [ruby-changes:59115] 5e65e65bd9 (master): Set PATH at once

https://git.ruby-lang.org/ruby.git/commit/?id=5e65e65bd9

From 5e65e65bd935954190a5d481def788524c4ae169 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sun, 8 Dec 2019 23:00:46 +0900
Subject: Set PATH at once


diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index 2dd7167..bd61787 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -33,28 +33,27 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/cygwin.yml#L33
         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
+      - name: Set ENV
+        run: |
+          echo '::set-env name=PATH::C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin'
       # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
       - name: Checkout ruby/ruby
         run: |
-          path C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin
           git clone --single-branch --shallow-since=yesterday https://github.com/ruby/ruby src
           git -C src reset --hard ${{ github.sha }}
         if: github.event_name == 'push'
         shell: cmd
       - name: Checkout a pull request
         run: |
-          path C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin
           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 }}
         if: github.event_name == 'pull_request'
         shell: cmd
       - name: Actions-commit-info.sh
         run: |
-          path C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin
           bash.exe -c "./src/tool/actions-commit-info.sh"
         shell: cmd
       - name: Autoconf && configure & make & make btest
         run: |
-          path C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin
           bash.exe -c "cd src && autoconf && ./configure && make && make btest"
         shell: cmd
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]