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

ruby-changes:56939

From: Hiroshi <ko1@a...>
Date: Mon, 12 Aug 2019 13:06:43 +0900 (JST)
Subject: [ruby-changes:56939] Hiroshi SHIBATA: bf1f872991 (master): Removed duplicated jobs with GitHub Actions.

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

From bf1f872991bcfcb86472873794bcef88749b95d0 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Mon, 12 Aug 2019 12:08:42 +0900
Subject: Removed duplicated jobs with GitHub Actions.

Closes: https://github.com/ruby/ruby/pull/2340

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index f7804ca..5b2cc17 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -2,59 +2,6 @@ pr: none # comment out this line if you need to test this file on PR https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L2
 trigger:
   - master
 jobs:
-- job: Linux
-  pool:
-    vmImage: 'ubuntu-16.04'
-  strategy:
-    matrix:
-      bundled_gems:
-        task: test-bundled-gems
-      bundler:
-        task: test-bundler
-  steps:
-  - task: UseRubyVersion@0
-    inputs:
-      versionSpec: '2.6.2'
-  - script: |
-      set -x
-      sudo sed /etc/apt/sources.list -e "s/^# deb-src/deb-src/g" -i
-      sudo apt-get update
-      sudo apt-get build-dep ruby2.3
-    displayName: "Install dependencies"
-  - checkout: self
-    fetchDepth: 20
-  - script: |
-      autoconf
-      ./configure
-      make
-    displayName: 'make'
-  - script: |
-      make $(task) TRAVIS=1 TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
-    displayName: "test"
-    continueOnError: true # test-bundler is failing on Linux. TODO: fix it and remove this line.
-
-- job: macOS
-  pool:
-    vmImage: 'macos-10.13'
-  strategy:
-    matrix:
-      bundled_gems:
-        task: test-bundled-gems
-  steps:
-  - script: brew install autoconf bison openssl
-    displayName: "Install dependencies"
-  - checkout: self
-    fetchDepth: 20
-  - script: |
-      autoconf
-      ./configure --with-openssl-dir=/usr/local/opt/openssl
-      make
-    displayName: 'make'
-  - script: |
-      make $(task) TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
-    displayName: "test"
-    continueOnError: true # test-bundler is failing on macOS. TODO: fix it and remove this line.
-
 # - job: vs2015
 #   pool:
 #     vmImage: "vs2015-win2012r2"
-- 
cgit v0.10.2


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

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