aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-08-12 14:35:49 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-08-12 14:37:26 +0900
commitb1ef14176b3716e3900672a9563b94aa3abedb2d (patch)
treeb4901a6a9f550cd3105294b7d96b4c0439729d68 /.github
parent4f10a61eaaf5bfe7e4c53edc79c5e27a7bd1ae33 (diff)
downloadruby-b1ef14176b3716e3900672a9563b94aa3abedb2d.tar.gz
We did not have tool/ before checkout
anyway we don't need authorization here. Also retry does not seem to work in the original version, so let's extend this with retries as a separate github action later.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 629b542a25..f698b55410 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -22,7 +22,7 @@ jobs:
brew update
brew install gdbm gmp libffi openssl zlib ccache autoconf automake libtool readline
- name: Checkout # not using actions/checkout because it's unstable.
- run: tool/ci_retry.sh git clone --depth=50 https://github.com/ruby/ruby .
+ run: git clone --depth=50 https://github.com/ruby/ruby .
- name: Set ENV
run: |
echo '##[set-env name=JOBS]'-j$((1 + $(sysctl -n hw.activecpu)))
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 7870fae308..7be2c687ad 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -21,7 +21,7 @@ jobs:
sudo apt-get install ruby2.5
sudo apt-get build-dep ruby2.5
- name: Checkout # not using actions/checkout because it's unstable.
- run: tool/ci_retry.sh git clone --depth=50 https://github.com/ruby/ruby .
+ run: git clone --depth=50 https://github.com/ruby/ruby .
- name: Set ENV
run: |
export JOBS=-j$((1 + $(nproc --all)))