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

ruby-changes:55073

From: k0kubun <ko1@a...>
Date: Sun, 17 Mar 2019 14:32:57 +0900 (JST)
Subject: [ruby-changes:55073] k0kubun:r67280 (trunk): Roughly increase Azure Pipelines fetch depth

k0kubun	2019-03-17 14:32:53 +0900 (Sun, 17 Mar 2019)

  New Revision: 67280

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67280

  Log:
    Roughly increase Azure Pipelines fetch depth
    
    because --depth=1 may randomly break checkout:
    https://dev.azure.com/rubylang/ruby/_build/results?buildId=208&view=logs&jobId=7ded14dc-7a77-59da-f40a-71e137ad96c0&taskId=2045950f-1dcd-54a4-4c23-fae2521239c1&lineStart=1554&lineEnd=1555&colStart=1&colEnd=1

  Modified files:
    trunk/azure-pipelines.yml
Index: azure-pipelines.yml
===================================================================
--- azure-pipelines.yml	(revision 67279)
+++ azure-pipelines.yml	(revision 67280)
@@ -15,7 +15,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L15
       versionSpec: '2.5.1'
   - script: sudo apt update -qy && sudo apt-get build-dep ruby2.3
   - checkout: self
-    fetchDepth: 1
+    fetchDepth: 10
   - script: |
       autoconf
       ./configure
@@ -42,7 +42,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L42
   steps:
   - script: brew update && brew install autoconf bison openssl
   - checkout: self
-    fetchDepth: 1
+    fetchDepth: 10
   - script: |
       autoconf
       ./configure --with-openssl-dir=/usr/local/opt/openssl
@@ -98,7 +98,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L98
   steps:
   - script: vcpkg --triplet x64-windows install openssl readline zlib
   - checkout: self
-    fetchDepth: 1
+    fetchDepth: 10
   - script: |
       call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
       cinst winflexbison
@@ -129,7 +129,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L129
   steps:
 #   - script: vcpkg --triplet x64-windows install openssl readline zlib
   - checkout: self
-    fetchDepth: 1
+    fetchDepth: 10
   - script: |
       call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvars64.bat"
       cinst winflexbison

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

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