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

ruby-changes:56913

From: Takashi <ko1@a...>
Date: Sat, 10 Aug 2019 19:38:45 +0900 (JST)
Subject: [ruby-changes:56913] Takashi Kokubun: b3903ef2a1 (master): Set more descriptive labels to workflow

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

From b3903ef2a156a19de0c27a3e95cd7a4467cdce59 Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Sat, 10 Aug 2019 19:38:27 +0900
Subject: Set more descriptive labels to workflow


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 456b6f8..3762263 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -7,7 +7,7 @@ on: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L7
     paths:
       - '*'
 jobs:
-  macos:
+  latest:
     runs-on: macos-latest
     steps:
       - name: Disable Firewall
@@ -24,21 +24,16 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L24
           fetch-depth: 5
       - name: Set ENV
         run: |
-          echo '##[set-env name=CONFIGURE_TTY]no'
-          echo '##[set-env name=NPROC]'$(sysctl -n hw.activecpu)
           echo '##[set-env name=JOBS]'-j$((1 + $(sysctl -n hw.activecpu)))
-      - name: Print ENV
-        run: |
-          echo $CONFIGURE_TTY
-          echo $NPROC
-          echo $JOBS
       - run: autoconf
       - name: configure
         run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline)
       - run: make $JOBS
-      - run: make -s test TESTOPTS="${TESTOPTS=$JOBS -q --tty=$CONFIGURE_TTY}"
-      - run: make -s test-all TESTOPTS="${TESTOPTS=$JOBS -q --tty=$CONFIGURE_TTY}"
-      - name: Ruby Spec
+      - name: make test
+        run: make -s test TESTOPTS="$JOBS -q --tty=no"
+      - name: make test-all
+        run: make -s test-all TESTOPTS="$JOBS -q --tty=no"
+      - name: make test-spec
         run: make -s test-spec MSPECOPT=-ff # not using `-j` because sometimes `mspec -j` silently dies
       - name: Leaked Globals
         run: make -s leaked-globals
-- 
cgit v0.10.2


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

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