Skip to content

Commit 08ea530

Browse files
authored
R-devel now give less notes (#7359)
* R-devel now give less notes * also decrement count
1 parent 0c29bcf commit 08ea530

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ test-lin-dev-gcc-strict-cran:
182182
- R CMD check --as-cran $(ls -1t data.table_*.tar.gz | head -n 1)
183183
- (! grep "warning:" data.table.Rcheck/00install.out)
184184
- >-
185-
Rscript -e 'l=tail(readLines("data.table.Rcheck/00check.log"), 1L); notes<-"Status: 3 NOTEs"; if (!identical(l, notes)) stop("Last line of ", shQuote("00check.log"), " is not ", shQuote(notes), " (size of tarball, non-API calls, V8 package) but ", shQuote(l)) else q("no")'
185+
Rscript -e 'l=tail(readLines("data.table.Rcheck/00check.log"), 1L); notes<-"Status: 2 NOTEs"; if (!identical(l, notes)) stop("Last line of ", shQuote("00check.log"), " is not ", shQuote(notes), " (non-API calls, V8 package) but ", shQuote(l)) else q("no")'
186186
187187
## R-devel on Linux clang
188188
# R compiled with clang, flags removed: -flto=auto -fopenmp
@@ -205,7 +205,7 @@ test-lin-dev-clang-cran:
205205
- R CMD check --as-cran $(ls -1t data.table_*.tar.gz | head -n 1)
206206
- (! grep "warning:" data.table.Rcheck/00install.out)
207207
- >-
208-
Rscript -e 'l=tail(readLines("data.table.Rcheck/00check.log"), 1L); notes<-"Status: 3 NOTEs"; if (!identical(l, notes)) stop("Last line of ", shQuote("00check.log"), " is not ", shQuote(notes), " (size of tarball, non-API calls, V8 package) but ", shQuote(l)) else q("no")'
208+
Rscript -e 'l=tail(readLines("data.table.Rcheck/00check.log"), 1L); notes<-"Status: 2 NOTEs"; if (!identical(l, notes)) stop("Last line of ", shQuote("00check.log"), " is not ", shQuote(notes), " (non-API calls, V8 package) but ", shQuote(l)) else q("no")'
209209
210210
# stated dependency on R
211211
test-lin-ancient-cran:

0 commit comments

Comments
 (0)