opal 1.0.0.beta1 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,109 +0,0 @@
1
- language: ruby
2
-
3
- # https://github.com/discourse/mini_racer#travis-ci
4
- sudo: required
5
- dist: trusty
6
-
7
- addons:
8
- chrome: stable
9
-
10
- branches:
11
- only:
12
- - master
13
- - /^.*-stable$/
14
- - /^.*ci-check$/
15
-
16
- cache:
17
- bundler: true
18
- directories:
19
- - /home/travis/.nvm/
20
- - smoke_test_opal_rspec
21
-
22
- matrix:
23
- fast_finish: true
24
-
25
- include:
26
- - rvm: 2.5.3
27
- env: RUN=mspec_opal_chrome
28
-
29
- - rvm: 2.5.3
30
- env: RUN=mspec_ruby_chrome
31
-
32
- # - rvm: 2.5.3
33
- # env:
34
- # - RUN=browser_test
35
- # - SAUCE_USERNAME=elia
36
- # # SAUCE_ACCESS_KEY:
37
- # - secure: GT13SjzU8vmqKIyY2LAXje+ndqevTsX/w71JkZHRLTrDUl0qcIod7xsfahbzGt2gOZPYZUkKiVaPoUenhc/YeJ2jTJVHeHY9UEl2II+3tOtuvp2jLadA//aBbsB6/09d7lIZMzpa93TL2R/SncPxugYW9v2o8o8Lwd2iIzowT/g=
38
-
39
- - rvm: 2.5.3
40
- env: RUN=lint
41
-
42
- - rvm: 2.5.3
43
- env: RUN=mspec_opal_nodejs
44
-
45
- - rvm: 2.5.3
46
- env: RUN=mspec_ruby_nodejs TZ="/usr/share/zoneinfo/Pacific/Fiji"
47
-
48
- - rvm: 2.5.3
49
- env: RUN=minitest
50
-
51
- - rvm: 2.5.3
52
- env: RUN=rspec RACK_VERSION='~> 2.0' CHECK_COVERAGE=true
53
-
54
- - rvm: 2.5.3
55
- env: RUN=smoke_test
56
-
57
- - rvm: ruby-head
58
- env: RUN=rspec
59
-
60
- - rvm: 2.4.5
61
- env: RUN=rspec RACK_VERSION='~> 2.0'
62
-
63
- - rvm: 2.3.8
64
- env: RUN=rspec
65
-
66
- - rvm: 2.6.0
67
- env: RUN=rspec
68
-
69
- - rvm: truffleruby
70
- env: RUN=rspec
71
-
72
- - rvm: jruby-9.2.4.1
73
- env: RUN=rspec
74
-
75
- - rvm: jruby-head
76
- env: RUN=rspec
77
-
78
- allow_failures:
79
- - rvm: ruby-head
80
- - rvm: jruby-head
81
- - rvm: truffleruby
82
- - env: RUN=smoke_test
83
-
84
-
85
- before_install:
86
- # Keep track of which version of node we're running the specs against
87
- - node -v
88
- - git submodule update --init
89
- - npm install -g jshint
90
- - npm install -g uglify-js
91
- - bundle config without doc
92
- - which google-chrome-stable
93
- - google-chrome-stable --version
94
- - export RUBYOPT=-w
95
- # Wokraround from https://github.com/travis-ci/travis-ci/issues/9024#issuecomment-356282802
96
- - sudo chown root /opt/google/chrome/chrome-sandbox
97
- - sudo chmod 4755 /opt/google/chrome/chrome-sandbox
98
-
99
- script:
100
- - "bundle exec rake $RUN"
101
-
102
- notifications:
103
- irc: "irc.freenode.org#opal"
104
- webhooks:
105
- urls:
106
- - https://webhooks.gitter.im/e/2ea12333adebda0c2289
107
-
108
- # addons:
109
- # sauce_connect: true
@@ -1,35 +0,0 @@
1
- version: '{build}'
2
-
3
- skip_tags: true
4
- # AppVeyor automatically skips the build if the commit contains [ci skip] or [skip ci]
5
- #skip_commits:
6
- # message: /\[ci skip\]/
7
-
8
- clone_depth: 10
9
-
10
- environment:
11
- ruby_version: '25'
12
-
13
- branches:
14
- only:
15
- - master
16
- - /.*-stable/
17
- - /.*/ci-check/
18
-
19
- install:
20
- - git submodule update --init --recursive
21
- # Take default Ruby out of path
22
- - SET PATH=%PATH:C:\Ruby193\bin;=%
23
- # Add Ruby to path from build matrix
24
- - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
25
- - ruby --version
26
- - gem --version
27
- - node --version
28
- - bundler --version
29
- - bundle
30
-
31
- build: off
32
-
33
- # TODO: add mspec_chrome and minitest_chrome once Chrome 60 will be released
34
- test_script:
35
- - bundle exec rake rspec mspec_nodejs minitest_nodejs minitest_node_nodejs