Skip to content

Commit 52c0c6c

Browse files
committed
[s1924] reduce clone time in Travis by only getting the latest commit and not the whole history (default for travis is 100)
(based on commit [12393] - de0dcf7) Signed-off-by: DasBlub <[email protected]>
1 parent bacd902 commit 52c0c6c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
language: cpp
2020

21+
# reduce clone time by only getting the latest commit and not the whole history (default for travis is 100)
22+
git:
23+
depth: 1
24+
2125
# only run travis on the master branch
2226
branches:
2327
only:

src/shared/revision_nr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef __REVISION_NR_H__
22
#define __REVISION_NR_H__
3-
#define REVISION_NR "1923"
3+
#define REVISION_NR "1924"
44
#endif // __REVISION_NR_H__

0 commit comments

Comments
 (0)