Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to ppc64le with gcc. Install gettext #100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ language: cpp
compiler:
- gcc
- clang
arch:
- amd64
- ppc64le
env:
# Try to be nice to the builder
- CMAKE_FLAGS=" " INSTALL_LOCAL_LOTTIE=n
Expand Down Expand Up @@ -49,6 +52,19 @@ matrix:
# - compiler: clang
# env: CMAKE_FLAGS="-DNoWebp=1 -DNoTranslations=1 -DNoBundledLottie=1" INSTALL_LOCAL_LOTTIE=y

# exclude power jobs
- compiler: clang
arch: ppc64le # Exclude all clang jobs for ppc64le
- compiler: gcc
arch: ppc64le
env: CMAKE_FLAGS="-DNoWebp=1 " INSTALL_LOCAL_LOTTIE=n
- compiler: gcc
arch: ppc64le
env: CMAKE_FLAGS=" -DNoLottie=1 " INSTALL_LOCAL_LOTTIE=n
- compiler: gcc
arch: ppc64le
env: CMAKE_FLAGS="-DNoWebp=1 -DNoTranslations=1 -DNoBundledLottie=1" INSTALL_LOCAL_LOTTIE=y

cache:
directories:
- .travis_cache/
Expand All @@ -66,6 +82,8 @@ before_install:
# https://travis-ci.com/github/BenWiederhake/tdlib-purple/builds/174539831#L907
- sudo apt-get install -y -qq php
- if [ "x${INSTALL_LOCAL_LOTTIE}" = "xy" ] ; then sudo apt-get install -y -qq librlottie-dev ; fi
# ppc64le travis doesn't have gettext. installing it here.
- if [ "$TRAVIS_CPU_ARCH" = "ppc64le" ]; then sudo apt-get install -y -qq gettext ; fi

script:
- LINTACCEL_IGNORE_MISSING=y ./po/lint_accelerators.py
Expand Down