aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ead20117973e7eb8e18bd1719143fc8f1bafb54a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
language: c
dist: trusty
sudo: true

script:
  - sudo apt-get -y install expect csh zsh
  - ( cd firejail ; ./configure --prefix=/usr && make && sudo make install && make test-travis )
  - ( cd firejail ; sudo make install-strip DESTDIR=$(readlink -f appdir) )
  - ( cd appdir/ ; tar cfvj ../firejail-travis-build.tar.bz2 . )
  - curl --upload-file ./firejail-*.tar.bz2 https://transfer.sh/firejail-travis-build.tar.bz2
  - # Could use https://github.com/probonopd/uploadtool to upload to GitHub Releases instead