diff --git a/.travis.yml b/.travis.yml index ec1adab03..57242a488 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ # Medium Tests: Run on all commits/PRs to dev branch language: c -dist: trusty git: depth: 1 @@ -26,39 +25,39 @@ env: matrix: fast_finish: true include: - - name: arm64 + - name: arm64 # ~2.5 mn os: linux arch: arm64 script: - make check - - name: make test (complete) + - name: make test (complete) # ~14mn script: # DEVNULLRIGHTS : will request sudo rights to test permissions on /dev/null - DEVNULLRIGHTS=test make test - - name: gcc-6 + gcc-7 compilation + - name: gcc-6 + gcc-7 compilation # ~ 3mn script: - make gcc6install gcc7install - CC=gcc-6 CFLAGS=-Werror make -j all - make clean - CC=gcc-7 CFLAGS=-Werror make -j all - - name: gcc-8 + ASan + UBSan + Test Zstd + - name: gcc-8 + ASan + UBSan + Test Zstd # ~6.5mn script: - make gcc8install - CC=gcc-8 CFLAGS="-Werror" make -j all - make clean - CC=gcc-8 make -j uasan-test-zstd /* LARGE_INTEGER */ + #include /* LARGE_INTEGER */ typedef LARGE_INTEGER UTIL_time_t; #define UTIL_TIME_INITIALIZER { { 0, 0 } } diff --git a/programs/windres/generate_res.bat b/programs/windres/generate_res.bat deleted file mode 100644 index 7ff9aef51..000000000 --- a/programs/windres/generate_res.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -REM http://stackoverflow.com/questions/708238/how-do-i-add-an-icon-to-a-mingw-gcc-compiled-executable - -where /q windres.exe -IF ERRORLEVEL 1 ( - ECHO The windres.exe is missing. Ensure it is installed and placed in your PATH. - EXIT /B -) ELSE ( - windres.exe -I ../lib -I windres -i windres/zstd.rc -O coff -F pe-x86-64 -o windres/zstd64.res - windres.exe -I ../lib -I windres -i windres/zstd.rc -O coff -F pe-i386 -o windres/zstd32.res -)