Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit b8929d6

Browse files
authored
Travis configuration (#1)
Update Travis CI configuration for new repository home. Travis Script update for new repo pathing. Updated Readme to use the new Travis Build Status Graphic address.
1 parent 436b8f3 commit b8929d6

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ before_script:
7070
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope;
7171
fi"
7272
- "if [[ $IOTC_BSP_TLS == 'wolfssl' ]]; then
73-
git clone -b v3.15.3-stable https://github.com/wolfSSL/wolfssl $HOME/build/xively/xively-client-migration/third_party/tls/wolfssl;
73+
git clone -b v3.15.3-stable https://github.com/wolfSSL/wolfssl $HOME/build/GoogleCloudPlatform/iot-edge-sdk-embedded-c/third_party/tls/wolfssl;
7474
fi;"
7575
script:
7676
- "set -e"
77-
- "cd $HOME/build/xively/xively-client-migration/"
77+
- "cd $HOME/build/GoogleCloudPlatform/iot-edge-sdk-embedded-c"
7878
- "if [[ $IOTC_BSP_TLS == 'wolfssl' ]]; then
7979
expect res/travis/travis_build_wolfssl.expect make PRESET=$PRESET IOTC_DEBUG_OUTPUT=0 $IOTC_MAKETARGET;
8080
else

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Branch | Build status
110110
------------|-------------
111111
master | ![travis-private-repo-icon-master]
112112

113-
[travis-private-repo-icon-master]: https://travis-ci.com/googlecloudplatform/iot-edge-sdk-embedded-c.svg?token=tzWdJymp9duuAGWpamkM&branch=master
113+
[travis-private-repo-icon-master]: https://travis-ci.com/GoogleCloudPlatform/iot-edge-sdk-embedded-c.svg?token=tzWdJymp9duuAGWpamkM&branch=master
114114

115115

116116
## Contributing

src/tests/utests/iotc_utest_jwt.c

-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ IOTC_TT_TESTCASE_WITH_SETUP(jwt_create_es256__small_buffer_provided,
5151
"projectID", 600, &DEFAULT_PRIVATE_KEY, jwt,
5252
1, &bytes_written);
5353

54-
printf("ret: %d\n", ret);
5554
tt_int_op(IOTC_BUFFER_TOO_SMALL_ERROR, ==, ret);
5655

5756
end:;
@@ -97,7 +96,6 @@ IOTC_TT_TESTCASE_WITH_SETUP(
9796
IOTC_JWT_SIZE, &bytes_written);
9897

9998
tt_int_op(IOTC_JWT_PROJECTID_TOO_LONG_ERROR, ==, ret);
100-
printf("bytes_written: %lu\n", bytes_written);
10199

102100
// make project id the desired max long
103101
tt_int_op(bytes_written, <, IOTC_JWT_SIZE);
@@ -108,7 +106,6 @@ IOTC_TT_TESTCASE_WITH_SETUP(
108106
&bytes_written);
109107

110108
tt_int_op(IOTC_STATE_OK, ==, ret);
111-
printf("ret: %d\n", ret);
112109
end:;
113110
})
114111

0 commit comments

Comments
 (0)