mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-25 02:49:52 +03:00
21 lines
257 B
YAML
21 lines
257 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
os: linux
|
|
|
|
language: c
|
|
|
|
compiler: [ gcc, clang ]
|
|
|
|
cache:
|
|
ccache: true
|
|
|
|
before_script:
|
|
- mkdir -p "${HOME}/bin"
|
|
- ln -s "$(which ccache)" "${HOME}/bin/${CC}"
|
|
- PATH="${HOME}/bin:${PATH}"
|
|
|
|
script:
|
|
- ./configure
|
|
- make
|