mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
[CircleCI] Fix short-tests-0
short-tests-0 were silently failing. I think because of the && make clean construction. Switch to ; instead. Also fix all the test failures that were exposed. `make all` is failing on CircleCI because it is missing Docker. Move that test to GitHub actions, and switch the pedantic CircleCI test to `make allmost`.
This commit is contained in:
parent
e34e58b458
commit
91f5891dd0
7 changed files with 31 additions and 29 deletions
|
|
@ -57,7 +57,7 @@ typedef enum {
|
|||
* Check the zstd error code and die if an error occurred after printing a
|
||||
* message.
|
||||
*/
|
||||
#define CHECK_ZSTD(fn, ...) \
|
||||
#define CHECK_ZSTD(fn) \
|
||||
do { \
|
||||
size_t const err = (fn); \
|
||||
CHECK(!ZSTD_isError(err), "%s", ZSTD_getErrorName(err)); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue