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

ruby-changes:56968

From: Hiroshi <ko1@a...>
Date: Mon, 12 Aug 2019 20:36:46 +0900 (JST)
Subject: [ruby-changes:56968] Hiroshi SHIBATA: ab3ab07b28 (master): Removed configuration of Azure Pipelines

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

From ab3ab07b28ac58333d7bbf898ec7cf5973bd02a6 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Mon, 12 Aug 2019 19:12:29 +0900
Subject: Removed configuration of Azure Pipelines


diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index 5b2cc17..0000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,109 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/#L0
-pr: none # comment out this line if you need to test this file on PR
-trigger:
-  - master
-jobs:
-# - job: vs2015
-#   pool:
-#     vmImage: "vs2015-win2012r2"
-#   strategy:
-#     matrix:
-#       test:
-#         task: test test-all
-#       spec:
-#         task: test-spec
-#       bundled_gems:
-#         task: test-bundled-gems
-#       bundler:
-#         task: test-bundler
-#   steps:
-#   - script: vcpkg --triplet x64-windows install openssl readline zlib
-#   - script: |
-#       call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
-#       cinst winflexbison
-#       win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
-#     displayName: 'configure'
-#   - script: |
-#       call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
-#       set YACC=win_bison
-#       nmake up
-#       nmake
-#       set TRAVIS=1
-#       nmake $(task)
-#     displayName: "nmake"
-
-- job: vs2017
-  pool:
-    vmImage: 'vs2017-win2016'
-#  strategy:
-#    matrix:
-#      test:
-#        task: test test-all
-#      spec:
-#        task: test-spec
-#      bundled_gems:
-#        task: test-bundled-gems
-#      bundler:
-#        task: test-bundler
-  steps:
-  # FIXME: Refactor this. Note that %errorlevel% does not work in for loop.
-  - script: |
-      vcpkg --triplet x64-windows install %dependencies% || (
-        sleep 4 && vcpkg --triplet x64-windows install %dependencies%
-      ) || (
-        sleep 25 && vcpkg --triplet x64-windows install %dependencies%
-      )
-    env:
-      dependencies: openssl readline zlib
-    displayName: "Install dependencies"
-    timeoutInMinutes: 20
-    continueOnError: true # unstable. TODO: somehow use VM having these dependencies beforehand, and remove this `continueOnError`
-  - checkout: self
-    fetchDepth: 20
-  - script: |
-      call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
-      cinst winflexbison
-      win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
-    displayName: 'configure'
-    continueOnError: true # "Install dependencies" is continueOnError
-  - script: |
-      call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
-      set YACC=win_bison
-      nmake up
-      nmake
-#      set TRAVIS=1
-#      nmake $(task)
-    displayName: "nmake"
-    continueOnError: true # "Install dependencies" is continueOnError
-
-- job: vs2019
-  pool:
-    vmImage: "windows-2019"
-#   strategy:
-#     matrix:
-#       test:
-#         task: test test-all
-#       spec:
-#         task: test-spec
-#       bundled_gems:
-#         task: test-bundled-gems
-#       bundler:
-#         task: test-bundler
-  steps:
-#   - script: vcpkg --triplet x64-windows install openssl readline zlib
-  - checkout: self
-    fetchDepth: 20
-  - script: |
-      call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvars64.bat"
-      cinst winflexbison
-      win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
-    displayName: 'configure'
-    continueOnError: true # this started to fail after the vs2019 launch. TODO: fix it and remove this line.
-  - script: |
-      call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvars64.bat"
-      set YACC=win_bison
-      nmake up
-      nmake
-#       set TRAVIS=1
-#       nmake $(task)
-    displayName: "nmake"
-    continueOnError: true # TODO: make 'configure' functional and remove this line.
-- 
cgit v0.10.2


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

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