aboutsummaryrefslogtreecommitdiffstats
path: root/wercker.yml
blob: a499a05d850bd5476b208a7aaf25502aa633000c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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

    # Pending for https://app.wercker.com/ruby/ruby/runs/build/5bce69356326620007fbaa5c?step=5bce697cacc4510006d30a47
    # I'll fix and enable this later.

    # - 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$