File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ notifications:
40
40
webhooks :
41
41
urls :
42
42
# travis2slack webhook to enable DMs on openwhisk-team.slack.com to PR authors with TravisCI results
43
- secure : " tYJIDAKtHp+yLw53yB6+TQnNfyNwZDAZyG7QmHbNP5Mf1HR0GLhpe02AjV99NkjAgaGYxngUELMhNOyB8eiyMdxpemwny4oOeyOUQzVmiry/804JnjK2YvHyAGFVGuhV0LZVfCPsPh5x91yKcDPLSqRSTKhZOiJFmDpBy4qzxM4W7IXxAM+yHKrm8cznBRdR5rGxT5IjV58xMB1p69jJy1rxnjtEWmB2z7j/SiKa6IQlVYgr+BgaJxBhy9WYYczvceU+qyrTWpVYy5P3o5+b0MZ/UkyB5CZT9N5LzLGjLRDqNaNYCT3U8ow1H6w+zY7/9KrAf6szT6raN606vN7uv7TqGEugG949JQfRSQNe3Y7IvTAHatI9VAc3opWgy0jm7eBu9pzSECamGGSGGHl18m7oWZypiwB+ooKg7k545XQCoVwlRulBvwnVO8w2HOjkKSds/JnNhdXLtNKRaBaZxhBkk+5b43k59vaYsHDXaYFUob/nG/K3JoPRkcLtFe3JfNsCABJYC0VbRE3AizHr8CYMhBUrgElPFwPmIJwwLOORq6y3zIRxTOIz4b/x2q9Oa17vK0IwAjgHi8y9RXc6lG0mCyVFScdpxoGF3d9xF8Edwc8WN22pYaZ8r71UF4AWOVxJs1Cnp8gcAn14gONVVvkaVCUwNCCElbJkjdVhhnI ="
43
+ secure : " qSkFNkMDYhp025vW+hBWO4wlMEeaz2S2c3tsZgIhcqji58AAxL2KKuNIWAuzftIxC5l5RwPt/OBXWFjgnAwCjj3hfczMfpuexGPruzmRe2GYbBwS0OhwDkWVosl9UqFELbZEdQ/tTJyW7p3Gd4FSjCJBCAdRL5yYcn3RiCj/UrJ6454IkKqeuTihWp2ZklqnZpMv9WzC4DK+cI/rJUP5megh/gilORfBD5/wnMMksC5NSlpc2WAtdeKusVZiZ6ieR6uLoR3rwzgUBC3PbyX8GO1OIh+LnvO7c0Hrhc2u685nxrCMseJIH9kZQboGA7RbiH64U5Zy7dK6fiFGfQJc3YyfsbKBKyd0QlvZp1vKw4iAvtsyentodjR1lN29fuTUW3hPMCo/YJSxZmHHMRSsoqs4zMp7lHo0aDfBOJRB+jjluA96Tn8SZjIATu76SwzJ0EolyVGw25HqKxSX0eM0ZLgrVrh89CwSlEYop07lQzaa1QTFu9DizONS8jlQYpXoAdgfeBXPDCyHVUzYjljzKyZG2Ph86eEo1mdHOlDyPI0hHuspBObP/mxSKXldxgBDRJ2jvF75t9DcxZdDzis5HBZeEktyIFaLS7spHlQLqGNEnpxNc+FxpT52Uw/sYJ6e1OG2Qx3Jhz4NNo4wJWUkdS1saaFCxIlyh7pqjpnsWqU ="
44
44
45
45
# specific cache configuration for gradle based builds
46
46
# see: https://docs.travis-ci.com/user/languages/java/#caching
@@ -57,7 +57,7 @@ before_install:
57
57
- ./tools/travis/docker.sh
58
58
- sudo apt-get install -y python3-pip
59
59
- pip install --user --upgrade pip setuptools six
60
- - pip3 install --user setuptools six
60
+ - pip3 install --user --upgrade pip setuptools six
61
61
62
62
install :
63
63
- ./tools/travis/setup.sh
Original file line number Diff line number Diff line change 19
19
20
20
# OpenWhisk
21
21
22
- [ ![ Build Status] ( https://travis-ci.org /apache/openwhisk.svg?branch=master )] ( https://travis-ci.org /apache/openwhisk )
22
+ [ ![ Build Status] ( https://travis-ci.com /apache/openwhisk.svg?branch=master )] ( https://travis-ci.com /apache/openwhisk )
23
23
[ ![ License] ( https://img.shields.io/badge/license-Apache--2.0-blue.svg )] ( http://www.apache.org/licenses/LICENSE-2.0 )
24
24
[ ![ Join Slack] ( https://img.shields.io/badge/join-slack-9B69A0.svg )] ( https://openwhisk-team.slack.com/ )
25
25
[ ![ codecov] ( https://codecov.io/gh/apache/openwhisk/branch/master/graph/badge.svg )] ( https://codecov.io/gh/apache/openwhisk )
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ kind create cluster --wait 5m
44
44
export KUBECONFIG=" $( kind get kubeconfig-path) "
45
45
kubectl config set-context --current --namespace=default
46
46
47
+ # This is required because it is timed out to pull the image during the test.
48
+ docker pull openwhisk/action-nodejs-v10:nightly
47
49
48
50
cd $ROOTDIR
49
51
TERM=dumb ./gradlew :core:standalone:build \
Original file line number Diff line number Diff line change @@ -31,16 +31,16 @@ function retry() {
31
31
}
32
32
33
33
# Python
34
- pip install --user couchdb
34
+ python -m pip install --user couchdb
35
35
36
36
# Ansible
37
- pip install --user ansible==2.5.2
37
+ python -m pip install --user ansible==2.5.2
38
38
39
39
# Azure CosmosDB
40
- pip install --user pydocumentdb
40
+ python -m pip install --user pydocumentdb
41
41
42
42
# Support the revises log upload script
43
- pip install --user humanize requests
43
+ python -m pip install --user humanize requests
44
44
45
45
# Basic check that all code compiles and depdendencies are downloaded correctly.
46
46
# Compiling the tests will compile all components as well.
You can’t perform that action at this time.
0 commit comments