mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
9cd5dfbdaa
Travis supports only quite old Ubuntu releases. They don't ship with libsignal-protocol-c and not with a recent enough libgrcypt. We could build libsignal-protocol-c manually but for libgcrypt it's more annoying. Let us switch to Docker and use openSUSE Tumbleweed, which is rolling release) and thus have up to date libs.
11 lines
165 B
YAML
11 lines
165 B
YAML
sudo: required
|
|
language: c
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker build -f Dockerfile -t profanity .
|
|
|
|
script:
|
|
- docker run -it profanity ./travis-build.sh
|