aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 1f35a509a493bfbf4690289e27b9ecd0480767f8 (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#------------------------------------------------------------------------------
# TravisCI configuration file for solidity.
#
# The documentation for solidity is hosted at:
#
# http://solidity.readthedocs.org
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
# cpp-ethereum is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cpp-ethereum is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cpp-ethereum.  If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------

language: cpp
branches:
    # We need to whitelist the branches which we want to have "push" automation.
    # Pull request automation is not constrained to this set of branches.
    only:
        - develop
        - release
matrix:
    include:
        # Ubuntu 14.04 LTS "Trusty Tahr"
        # https://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Ubuntu_14.04_LTS_.28Trusty_Tahr.29
        #
        # TravisCI doesn't directly support any new Ubuntu releases.  These is
        # some Docker support, which we should probably investigate, at least for
        # Ubuntu 16.04 LTS "Xenial Xerus"
        # See https://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Ubuntu_16.04_LTS_.28Xenial_Xerus.29.
        - os: linux
          dist: trusty
          sudo: required
          compiler: gcc
          env:
              - ZIP_SUFFIX=ubuntu-trusty

        - os: linux
          dist: trusty
          sudo: required
          compiler: clang
          env:
              - ZIP_SUFFIX=ubuntu-trusty-clang

        # Documentation target, which generates documentation using Phoenix / ReadTheDocs.
        - os: linux
          dist: trusty
          sudo: required
          compiler: gcc
          env:
              - TRAVIS_DOCS=On
              - TRAVIS_RELEASE=Off
              - TRAVIS_TESTS=Off

        # Emscripten target, which compiles 'solc' to javascript and uploads the resulting .js
        # files to https://github.com/ethereum/solc-bin.  These binaries are used in Browser-Solidity
        # and in other Ethereum web-based development contexts.
        - os: linux
          dist: trusty
          sudo: required
          compiler: gcc
          services:
              - docker
          before_install:
              - docker pull trzeci/emscripten:sdk-tag-1.35.4-64bit
          env:
              - TRAVIS_EMSCRIPTEN=On
              - TRAVIS_INSTALL_DEPS=Off
              - TRAVIS_RELEASE=Off
              - TRAVIS_TESTS=Off

        # OS X Mavericks (10.9)
        # https://en.wikipedia.org/wiki/OS_X_Mavericks
        #
# Disabled because of problems on travis.
#        - os: osx
#          osx_image: beta-xcode6.2
#          env:
#              - ZIP_SUFFIX=osx-mavericks

        # OS X Yosemite (10.10)
        # https://en.wikipedia.org/wiki/OS_X_Yosemite
        #
#        - os: osx
#          osx_image: xcode7.1
#          env:
#              # Workaround for "macOS - Yosemite, El Capitan and Sierra hanging?"
#              # https://github.com/ethereum/solidity/issues/894
#              - TRAVIS_TESTS=Off
#              - ZIP_SUFFIX=osx-yosemite

        # OS X El Capitan (10.11)
        # https://en.wikipedia.org/wiki/OS_X_El_Capitan
        #
#        - os: osx
#          osx_image: xcode7.3
#          env:
#              # The use of Debug config here ONLY for El Capitan is a workaround for "The Heisenbug"
#              # See https://github.com/ethereum/webthree-umbrella/issues/565
#              - TRAVIS_BUILD_TYPE=Debug
#              # Workaround for "macOS - Yosemite, El Capitan and Sierra hanging?"
#              # https://github.com/ethereum/solidity/issues/894
#              - TRAVIS_TESTS=Off
#              - ZIP_SUFFIX=osx-elcapitan

        # macOS Sierra (10.12)
        # https://en.wikipedia.org/wiki/MacOS_Sierra
        #
#       - os: osx
#          osx_image: xcode8
#          env:
#              # Look like "The Heisenbug" is occurring here too, so we'll do the same workaround.
#              # See https://travis-ci.org/ethereum/solidity/jobs/150240930
#              - TRAVIS_BUILD_TYPE=Debug
#              # Workaround for "macOS - Yosemite, El Capitan and Sierra hanging?"
#              # https://github.com/ethereum/solidity/issues/894
#              - TRAVIS_TESTS=Off
#              - ZIP_SUFFIX=macos-sierra

git:
    depth: 2

cache:
    ccache: true
    directories:
        - cryptopp
        - boost_1_57_0
        - build
        - jsoncpp

install:
    - test $TRAVIS_INSTALL_DEPS != On || ./scripts/install_deps.sh
    - echo -n "$TRAVIS_COMMIT" > commit_hash.txt
    - test "$TRAVIS_PULL_REQUESTS" != "false" || test "$TRAVIS_BRANCH" != release || echo -n > prerelease.txt # this is a proper release
before_script:
    - test $TRAVIS_EMSCRIPTEN != On || ./scripts/build_emscripten.sh
    - test $TRAVIS_RELEASE != On || (mkdir -p build
      && cd build
      && cmake .. -DCMAKE_BUILD_TYPE=$TRAVIS_BUILD_TYPE
      && make -j2
      && cd ..
      && ./scripts/release.sh $ZIP_SUFFIX )
script:
    - test $TRAVIS_DOCS != On || ./scripts/docs.sh

    # There are a variety of reliability issues with the Solidity unit-tests at the time of
    # writing (especially on macOS), so within TravisCI we will try to run the unit-tests
    # up to 3 times before giving up and declaring the tests as broken.
    #
    # We should aim to remove this "retry logic" as soon as we can, because it is a
    # band-aid for issues which need solving at their root.  Some of those issues will be
    # in Solidity's RPC setup and some will be in 'eth'.  It seems unlikely that Solidity
    # itself is broken from the failure messages which we are seeing.
    #
    # More details on known issues at https://github.com/ethereum/solidity/issues/769    
    - test $TRAVIS_TESTS != On || (cd $TRAVIS_BUILD_DIR && (./scripts/tests.sh || ./scripts/tests.sh || ./scripts/tests.sh) )
env:
    global:
        - ENCRYPTION_LABEL="6d4541b72666"
        - TRAVIS_BUILD_TYPE=RelWithDebInfo
        - TRAVIS_DOCS=Off
        - TRAVIS_EMSCRIPTEN=Off
        - TRAVIS_INSTALL_DEPS=On
        - TRAVIS_RELEASE=On
        - TRAVIS_TESTS=On

deploy:
    # This is the deploy target for the Emscripten build.
    # It publishes the JS file which was compiled as part of the earlier 'build_emscripten.sh'
    # step to https://github.com/ethereum/solc-bin/tree/gh-pages/bin.
    # Both the build and deploy steps for Emscripten are only run within the Ubuntu
    # configurations (not for macOS).  That is controlled by conditionals within the bash
    # scripts because TravisCI doesn't provide much in the way of conditional logic.
    - provider: script
      script: test $TRAVIS_EMSCRIPTEN != On || scripts/release_emscripten.sh
      skip_cleanup: true
      on:
          branch:
            - develop
            - release

    # This is the deploy target for the native build (Linux and macOS)
    # which generates ZIPs per commit.  We are in agreement that
    # generating ZIPs per commit for the develop branch is probably
    # just noise, so we only run this deployment target on 'release'.
    #
    # Unlike the Appveyor GitHub Releases target, the support in TravisCI
    # seemingly doesn't provide a means for passing a description, tag, etc.
    # In practice, we are letting the Appveyor CI do all that stuff, and
    # then this deployment flow just seems to find that most recent tag,
    # and just add our Linux and macOS ZIPs into the same tag, which is
    # what we want to happen.  But is very accidental and brittle-looking.
    #
    # The 'skip_cleanup' stops the workspace being cleaned out prior to
    # generation of the artifacts.  Strange that we should explicitly
    # need to do that, but we do.
    #
    # Tokens in TravisCI can be generated a few different ways.  Bob had
    # success using the 'travis' gem, and then using that gem to
    # create/edit this .travis.yml file, and then cut-and-pasting the
    # good bits back out of what it generated.  The gem changes all the
    # whitespace and deletes comments, so cannot be used as-is.  But
    # it does generate an appropriate auth token.
    #
    # TODO - I do not know if the api_key below which work correctly
    # for ethereum/solidity.   I suspect not, for the same reason as
    # my auth token does not work for Appveyor.  I don't have enough
    # permissions to enable this myself.  Christian should be able to.
    #
    # See https://docs.travis-ci.com/user/deployment/releases
    # See https://blog.travis-ci.com/2013-01-28-token-token-token/
    # See https://github.com/ethereum/webthree-umbrella/issues/658
    #
    - provider: releases
      api_key:
          secure: PWH37xVBCF0XiSjl+eH7XIdkrfxZXjzvqF4PiBOnD3VnFz+odrdnIwBmCeBYTHTWF8efpp8fmzWJk2UVq1JcpyZiC+SVxO8dx91W2ia1a+wKrEQuDgkUrZBkl5IQNCv0QS81DDQhliyZEaYh8wHO/7RReyMpGpw2U2u85WkFiZ+LdlHEZPfzUeh9lxQ9n8qwFL8Rja+Q05d4cQ8zaVEtofJJT4T6DUWhc3TzuxDYxOmjwg37rC9CkGSLn6VadSh8b3j5R0SZupFsAEvBL/imBLP9r9ewoo7o4p6By3jwiIgH9yNg7LM618xbffcNaYF/KtLBi9uPHfqF7hRD4PlECz+D0PR78nQItOX5HKm1QMg5kCnghRVCA0IVjpV5fiYQnMLM7dCRv34I5b3zLpa69wQ/GLYB2FViqNUfvPeiZTEeIJ2OmATlFx8AH2JoqpY1XJknWb35+vMfa8LSiJJW++SLWeV+ncC92hrvyZ1cy3trepRRZIfyYepxHifnfdWMkddQUJk5b2WS5Fy/TJLZNPeombnpvRhUC38dsYItarKeXTc6k4oADCEDZ2rgGIcEiqRxXV11Y5xHJekLDWzUs+YJNcCuL4pnAP//LOnbnH2w9rLpwhQYSl0anCd097NivAXQJXO2JI/byIYz1kiCVQWnW6EM8+72mLOklf/Qr8k=
      file: $TRAVIS_BUILD_DIR/solidity-$ZIP_SUFFIX.zip
      skip_cleanup: true
      on:
          repo: ethereum/solidity
          branch: release
          condition: $TRAVIS_RELEASE == On