mirror of
https://github.com/google/brotli.git
synced 2024-11-21 19:20:09 +00:00
3af18990f5
* Update go and closure bazel rules * Follow the new bazel go rules guide * Swap go & closure rules initialization * Update bazel to 0.10.0 in appveyor build
91 lines
2.8 KiB
YAML
91 lines
2.8 KiB
YAML
branches:
|
|
only:
|
|
- master
|
|
|
|
environment:
|
|
matrix:
|
|
- BUILD_SYSTEM: CMake
|
|
GENERATOR: Visual Studio 14 2015 Win64
|
|
|
|
- BUILD_SYSTEM: CMake
|
|
GENERATOR: Visual Studio 14 2015
|
|
|
|
- BUILD_SYSTEM: Python
|
|
PYTHON: "C:\\Python27"
|
|
PYTHON_VERSION: "2.7.x"
|
|
PYTHON_ARCH: "32"
|
|
|
|
- BUILD_SYSTEM: Python
|
|
PYTHON: "C:\\Python36-x64"
|
|
PYTHON_VERSION: "3.6.x"
|
|
PYTHON_ARCH: "64"
|
|
|
|
- BUILD_SYSTEM: make
|
|
ARCH: "i686"
|
|
|
|
- BUILD_SYSTEM: make
|
|
ARCH: "x86_64"
|
|
|
|
- BUILD_SYSTEM: bazel
|
|
|
|
install:
|
|
- IF "%BUILD_SYSTEM%"=="Python" (
|
|
SET "PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%" &&
|
|
pip install --disable-pip-version-check --user --upgrade pip &&
|
|
pip install --upgrade setuptools
|
|
)
|
|
- IF "%BUILD_SYSTEM%"=="make" (
|
|
IF "%ARCH%"=="i686" (
|
|
SET "TOOLCHAIN=i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32"
|
|
) ELSE (
|
|
SET "TOOLCHAIN=x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64"
|
|
)
|
|
)
|
|
- IF "%BUILD_SYSTEM%"=="bazel" (
|
|
appveyor DownloadFile https://github.com/bazelbuild/bazel/releases/download/0.10.0/bazel-0.10.0-windows-x86_64.exe -FileName bazel.exe
|
|
)
|
|
|
|
before_build:
|
|
- FOR /f %%i in ('C:\cygwin64\bin\date.exe +%%Y-%%m-%%d') DO SET "RELEASE_DATE=%%i"
|
|
- IF "%BUILD_SYSTEM%"=="CMake" ( mkdir builddir && cd builddir && cmake -G "%GENERATOR%" .. )
|
|
- IF "%BUILD_SYSTEM%"=="make" (
|
|
SET "CC=gcc" &&
|
|
SET "PATH=C:\mingw-w64\%TOOLCHAIN%\bin;%PATH%" &&
|
|
COPY C:\msys64\usr\bin\make.exe C:\mingw-w64\%TOOLCHAIN%\bin\make.exe
|
|
)
|
|
|
|
build_script:
|
|
- IF "%BUILD_SYSTEM%"=="CMake" ( cmake --build . --config Debug )
|
|
- IF "%BUILD_SYSTEM%"=="Python" ( python setup.py build_ext )
|
|
- IF "%BUILD_SYSTEM%"=="make" (
|
|
sh -c "make brotli" &&
|
|
cd bin && 7z a -tzip -mx9 brotli-win-%ARCH%-%RELEASE_DATE%.zip brotli.exe &&
|
|
appveyor PushArtifact brotli-win-%ARCH%-%RELEASE_DATE%.zip && cd ..
|
|
)
|
|
- IF "%BUILD_SYSTEM%"=="bazel" (
|
|
bazel --batch build -c opt java/org/brotli/wrapper/...:all &&
|
|
python scripts/fix-win-bazel-build.py &&
|
|
cd bazel-bin && 7z a -tzip -mx9 brotli-win-bazel-jni-%RELEASE_DATE%.zip brotli_jni.dll &&
|
|
appveyor PushArtifact brotli-win-bazel-jni-%RELEASE_DATE%.zip && cd ..
|
|
)
|
|
|
|
test_script:
|
|
- IF "%BUILD_SYSTEM%"=="CMake" ( ctest --output-on-failure --interactive-debug-mode 0 -C Debug )
|
|
- IF "%BUILD_SYSTEM%"=="Python" ( python setup.py test )
|
|
- IF "%BUILD_SYSTEM%"=="make" ( sh -c "make test" )
|
|
- IF "%BUILD_SYSTEM%"=="bazel" ( bazel --batch test -c opt --test_output streamed java/org/brotli/wrapper/...:all )
|
|
|
|
deploy:
|
|
- provider: BinTray
|
|
on:
|
|
branch: master
|
|
username: eustas
|
|
api_key:
|
|
secure: B3rM8JYeIHIw6BfOjHggAeyTmxEf8ZDYmyF9gCwqyWaxyxECD9BuN50SiV2KE/RI
|
|
subject: eustas
|
|
repo: brotli
|
|
package: bin
|
|
version: snapshot
|
|
publish: true
|
|
override: true
|