File tree Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -266,6 +266,9 @@ jobs:
266
266
- jobname : linux-sha256
267
267
cc : clang
268
268
pool : ubuntu-latest
269
+ - jobname : linux-reftable
270
+ cc : clang
271
+ pool : ubuntu-latest
269
272
- jobname : linux-gcc
270
273
cc : gcc
271
274
cc_package : gcc-8
@@ -277,6 +280,9 @@ jobs:
277
280
- jobname : osx-clang
278
281
cc : clang
279
282
pool : macos-13
283
+ - jobname : osx-reftable
284
+ cc : clang
285
+ pool : macos-13
280
286
- jobname : osx-gcc
281
287
cc : gcc
282
288
cc_package : gcc-13
@@ -287,6 +293,9 @@ jobs:
287
293
- jobname : linux-leaks
288
294
cc : gcc
289
295
pool : ubuntu-latest
296
+ - jobname : linux-reftable-leaks
297
+ cc : gcc
298
+ pool : ubuntu-latest
290
299
- jobname : linux-asan-ubsan
291
300
cc : clang
292
301
pool : ubuntu-latest
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ test:linux:
26
26
- jobname : linux-sha256
27
27
image : ubuntu:latest
28
28
CC : clang
29
+ - jobname : linux-reftable
30
+ image : ubuntu:latest
31
+ CC : clang
29
32
- jobname : linux-gcc
30
33
image : ubuntu:20.04
31
34
CC : gcc
@@ -40,6 +43,9 @@ test:linux:
40
43
- jobname : linux-leaks
41
44
image : ubuntu:latest
42
45
CC : gcc
46
+ - jobname : linux-reftable-leaks
47
+ image : ubuntu:latest
48
+ CC : gcc
43
49
- jobname : linux-asan-ubsan
44
50
image : ubuntu:latest
45
51
CC : clang
@@ -79,6 +85,9 @@ test:osx:
79
85
- jobname : osx-clang
80
86
image : macos-13-xcode-14
81
87
CC : clang
88
+ - jobname : osx-reftable
89
+ image : macos-13-xcode-14
90
+ CC : clang
82
91
artifacts :
83
92
paths :
84
93
- t/failed-test-artifacts
Original file line number Diff line number Diff line change @@ -367,7 +367,7 @@ linux-musl)
367
367
MAKEFLAGS=" $MAKEFLAGS NO_REGEX=Yes ICONV_OMITS_BOM=Yes"
368
368
MAKEFLAGS=" $MAKEFLAGS GIT_TEST_UTF8_LOCALE=C.UTF-8"
369
369
;;
370
- linux-leaks)
370
+ linux-leaks|linux-reftable-leaks )
371
371
export SANITIZE=leak
372
372
export GIT_TEST_PASSING_SANITIZE_LEAK=true
373
373
export GIT_TEST_SANITIZE_LEAK_LOG=true
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ linux-clang)
37
37
linux-sha256)
38
38
export GIT_TEST_DEFAULT_HASH=sha256
39
39
;;
40
+ linux-reftable|linux-reftable-leaks|osx-reftable)
41
+ export GIT_TEST_DEFAULT_REF_FORMAT=reftable
42
+ ;;
40
43
pedantic)
41
44
# Don't run the tests; we only care about whether Git can be
42
45
# built.
You can’t perform that action at this time.
0 commit comments