[Libclc-dev] [PATCH 2/2] travis: Add cmake build

Aaron Watry via Libclc-dev libclc-dev at lists.llvm.org
Fri Nov 16 20:00:00 PST 2018


This one looks ok to me.

--Aaron
On Tue, Nov 13, 2018 at 2:18 PM Jan Vesely via Libclc-dev
<libclc-dev at lists.llvm.org> wrote:
>
> Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
> ---
>  .travis.yml | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 89 insertions(+), 1 deletion(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index 49afa73..abdcf58 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -93,12 +93,100 @@ matrix:
>              # From sources above
>              - llvm-7-dev
>              - clang-7
> +    - env:
> +        - LABEL="cmake gcc LLVM-3.9"
> +        - LLVM_VERSION=3.9
> +        - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
> +        - CHECK_FILES="barts-r600--.bc cayman-r600--.bc cedar-r600--.bc cypress-r600--.bc tahiti-amdgcn--.bc amdgcn--amdhsa.bc nvptx--nvidiacl.bc nvptx64--nvidiacl.bc"
> +      addons:
> +        apt:
> +          sources:
> +            - llvm-toolchain-trusty-3.9
> +          packages:
> +            - libedit-dev
> +            - g++-4.8
> +            # From sources above
> +            - llvm-3.9-dev
> +            - clang-3.9
> +    - env:
> +        - LABEL="cmake gcc LLVM-4.0"
> +        - LLVM_VERSION=4.0
> +        - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
> +        - CHECK_FILES="barts-r600--.bc cayman-r600--.bc cedar-r600--.bc cypress-r600--.bc tahiti-amdgcn--.bc amdgcn--amdhsa.bc tahiti-amdgcn-mesa-mesa3d.bc nvptx--nvidiacl.bc nvptx64--nvidiacl.bc"
> +      addons:
> +        apt:
> +          sources:
> +            - llvm-toolchain-trusty-4.0
> +          packages:
> +            - libedit-dev
> +            - g++-4.8
> +            # From sources above
> +            - llvm-4.0-dev
> +            - clang-4.0
> +    - env:
> +        - LABEL="cmake gcc LLVM-5.0"
> +        - LLVM_VERSION=5.0
> +        - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
> +        - CHECK_FILES="barts-r600--.bc cayman-r600--.bc cedar-r600--.bc cypress-r600--.bc tahiti-amdgcn--.bc amdgcn--amdhsa.bc tahiti-amdgcn-mesa-mesa3d.bc nvptx--nvidiacl.bc nvptx64--nvidiacl.bc"
> +      addons:
> +        apt:
> +          sources:
> +            - llvm-toolchain-trusty-5.0
> +          packages:
> +            - libedit-dev
> +            - g++-4.8
> +            # From sources above
> +            - llvm-5.0-dev
> +            - clang-5.0
> +    - env:
> +        - LABEL="cmake gcc LLVM-6.0"
> +        - LLVM_VERSION=6.0
> +        - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
> +        - CHECK_FILES="barts-r600--.bc cayman-r600--.bc cedar-r600--.bc cypress-r600--.bc tahiti-amdgcn--.bc amdgcn--amdhsa.bc tahiti-amdgcn-mesa-mesa3d.bc nvptx--nvidiacl.bc nvptx64--nvidiacl.bc"
> +        # llvm passes -Werror=date-time which is only supported in gcc-4.9+
> +        - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
> +      addons:
> +        apt:
> +          sources:
> +            - llvm-toolchain-trusty-6.0
> +            - ubuntu-toolchain-r-test
> +          packages:
> +            - libedit-dev
> +            # LLVM-6 needs libstdc++4.9
> +            - g++-4.9
> +            # From sources above
> +            - llvm-6.0-dev
> +            - clang-6.0
> +    - env:
> +        - LABEL="cmake gcc LLVM-7"
> +        - LLVM_VERSION=7
> +        - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
> +        - CHECK_FILES="barts-r600--.bc cayman-r600--.bc cedar-r600--.bc cypress-r600--.bc tahiti-amdgcn--.bc amdgcn--amdhsa.bc tahiti-amdgcn-mesa-mesa3d.bc nvptx--nvidiacl.bc nvptx64--nvidiacl.bc"
> +        # llvm passes -Werror=date-time which is only supported in gcc-4.9+
> +        - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
> +      addons:
> +        apt:
> +          sources:
> +            - sourceline: 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-7 main'
> +              key_url: https://apt.llvm.org/llvm-snapshot.gpg.key
> +            - ubuntu-toolchain-r-test
> +          packages:
> +            - libedit-dev
> +            # LLVM-7 needs libstdc++4.9
> +            - g++-4.9
> +            # From sources above
> +            - llvm-7-dev
> +            - clang-7
>
>  before_install:
>      - eval "${MATRIX_EVAL}"
>
>  script:
> -  - $PYTHON ./configure.py --with-llvm-config=$LLVM_CONFIG --with-cxx-compiler=$CXX && make -j4
> +  - if $(echo $LABEL | grep cmake > /dev/null) ; then
> +        mkdir built_libs && cd built_libs && cmake .. -DLLVM_CONFIG=$LLVM_CONFIG && make -j4 && cd .. ;
> +    else
> +        $PYTHON ./configure.py --with-llvm-config=$LLVM_CONFIG --with-cxx-compiler=$CXX && make -j4;
> +    fi
>    - ret=0;
>      for f in $CHECK_FILES; do
>          ./check_external_calls.sh built_libs/$f || ret=1;
> --
> 2.19.1
>
> _______________________________________________
> Libclc-dev mailing list
> Libclc-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/libclc-dev


More information about the Libclc-dev mailing list