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

ruby-changes:53099

From: k0kubun <ko1@a...>
Date: Tue, 23 Oct 2018 09:19:58 +0900 (JST)
Subject: [ruby-changes:53099] k0kubun:r65313 (trunk): wercker.yml: run --jit-wait test on Wercker

k0kubun	2018-10-23 09:19:53 +0900 (Tue, 23 Oct 2018)

  New Revision: 65313

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

  Log:
    wercker.yml: run --jit-wait test on Wercker
    
    New. This was formerly https://github.com/k0kubun/mjit-test.

  Added files:
    trunk/wercker.yml
Index: wercker.yml
===================================================================
--- wercker.yml	(nonexistent)
+++ wercker.yml	(revision 65313)
@@ -0,0 +1,33 @@ https://github.com/ruby/ruby/blob/trunk/wercker.yml#L1
+box: k0kubun/mjit-test # move this to some ruby/xxx repository
+no-response-timeout: 30
+command-timeout: 60
+build:
+  steps:
+    - script:
+        name: workaround ipv6 localhost
+        code: ruby -e "hosts = File.read('/etc/hosts').sub(/^::1\s*localhost.*$/, ''); File.write('/etc/hosts', hosts)"
+    - script:
+        name: show last commit
+        code: git log -n1
+    - script:
+        name: configure
+        code: /usr/bin/sudo -H -u test -- bash -c 'autoconf && ./configure --disable-install-doc --prefix=/tmp/ruby-prefix'
+    - script:
+        name: make all install
+        code: /usr/bin/sudo -H -u test -- bash -c 'make -j$(nproc) all install'
+    - script:
+        name: make test (JIT)
+        code: /usr/bin/sudo -H -u test -- bash -c 'make test RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
+    - script:
+        name: make test-all (JIT)
+        code: /usr/bin/sudo -H -u test -- bash -c 'make test-all TESTOPTS="--color=never --job-status=normal" RUN_OPTS="--disable-gems --jit-wait --jit-warnings" RUBY_FORCE_TEST_JIT=1'
+    - script:
+        name: make test-spec (JIT)
+        code: /usr/bin/sudo -H -u test -- bash -c 'make test-spec RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
+  after-steps:
+    - wantedly/pretty-slack-notify:
+      webhook_url: $SLACK_WEBHOOK_URL
+      channel: alerts
+      username: mjit-test
+      notify_on: "failed"
+      branches: ^trunk$

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

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