123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- sudo: required
- branches:
- only:
- - master
- cache:
- directories:
- - ~/.ccache
- - ~/.pkg-cache
- - blender-addons-contrib.git
- - blender-addons.git
- - blender-dev-tools.git
- - blender-translations.git
- - blender
- services:
- - docker
- archlinux:
- mount:
- - ~/.ccache:~/.ccache
- - ~/.pkg-cache:/var/cache/pacman/pkg
- repos:
- - bartus=https://github.com/bartoszek/AUR-repo/raw/master
- packages:
- - ccache
- - moreutils
- - cuda
- before_install:
- # Override `package-cleanup.hook` to preserve cache for travis.
- # Enable ccache
- # Multithreaded build and compress
- # Suppress all gcc warnings
- - |
- sudo mkdir /etc/pacman.d/hooks/
- sudo ln -s /dev/null /etc/pacman.d/hooks/package-cleanup.hook
- sudo sed -i '/#MAKEFLAGS=/c MAKEFLAGS="-j2"' /etc/makepkg.conf
- sudo sed -i '/^BUILDENV/s/\!ccache/ccache/' /etc/makepkg.conf
- sudo sed -i '/^COMPRESSXZ/s/\xz/xz -T 2/' /etc/makepkg.conf
- sudo sed -i '$a CFLAGS="$CFLAGS -w"' /etc/makepkg.conf
- sudo sed -i '$a CXXFLAGS="$CXXFLAGS -w"' /etc/makepkg.conf
- script:
- # Incorporate ccache in nvcc
- - |
- _gcc="$(readlink /opt/cuda/bin/gcc)"
- _gpp="$(readlink /opt/cuda/bin/g++)"
- sudo mv /opt/cuda/bin/nvcc /opt/cuda/bin/nvcc.bin
- sudo rm /opt/cuda/bin/g{cc,++}
- echo -e "#!/bin/sh -\n/usr/bin/ccache /opt/cuda/bin/nvcc.bin \"\$@\"" | sudo dd of=/opt/cuda/bin/nvcc
- echo -e "#!/bin/sh -\n/usr/bin/ccache $_gcc \"\$@\"" | sudo dd of=/opt/cuda/bin/gcc
- echo -e "#!/bin/sh -\n/usr/bin/ccache $_gpp \"\$@\"" | sudo dd of=/opt/cuda/bin/g++
- sudo chmod +x /opt/cuda/bin/{nvcc,g{cc,++}}
- # Normalize TRAVIS variable
- - |
- [ "$TRAVIS" == "true" ] && TRAVIS=1 || TRAVIS=0
- # Build
- - ccache -s
- - timeout 35m makepkg -s --noconfirm | ts -s '[%.T]'; _makepkg_return=${PIPESTATUS[0]}
- - ccache -s
- - exit $_makepkg_return
- script:
- - "curl -s https://raw.githubusercontent.com/bartoszek/arch-travis/master/arch-travis.sh| bash"
- - "echo pacman pkg cache size: $(du -h ~/.pkg-cache|cut -f1) in $(ls ~/.pkg-cache|wc -l) files"
- #deploy:
- # on:
- # branch: master
- # skip_cleanup: true
- # provider: script
- # script: bash .travis_deploy.sh
|