Overview
Comment:Correction chemin travis
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 7beb9dcfa513a352380ea20031b52677837f1e93
User & Date: bohwaz on 2017-03-06 23:08:33
Other Links: branch diff | manifest | tags
Context
2017-03-06
23:20
Ajout notifications IRC check-in: 3257730d6c user: bohwaz tags: dev
23:08
Correction chemin travis check-in: 7beb9dcfa5 user: bohwaz tags: dev
22:50
Use insecure wget for travis-ci that doesn't have the correct cert store check-in: be4916642b user: bohwaz tags: dev
Changes

Modified .travis.yml from [c36f455870] to [108a3b96ab].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: php
php:
  - '5.4'
  - '5.5'
  - '5.6'
  - '7.0'
  - '7.1'
  - hhvm

install:
  - cd src && make deps

script:
  - php tests/run.php

notifications:
  irc:
    channels:
      - "irc.freenode.net#garradin"
    template:
      - "%{build_number} by %{author} on %{branch}: %{message} "
      - "Build details: %{build_url}"
    use_notice: false
    skip_join: true










|













1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: php
php:
  - '5.4'
  - '5.5'
  - '5.6'
  - '7.0'
  - '7.1'
  - hhvm

install:
  - make -C src deps

script:
  - php tests/run.php

notifications:
  irc:
    channels:
      - "irc.freenode.net#garradin"
    template:
      - "%{build_number} by %{author} on %{branch}: %{message} "
      - "Build details: %{build_url}"
    use_notice: false
    skip_join: true