mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
23 lines
743 B
YAML
23 lines
743 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install cmake
|
|
script: mkdir build && cd build && cmake .. && make
|
|
env:
|
|
global:
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
- secure: "NuRR5ZZ/PC58JrBv+n2fzsLWORMFk1VDcn7KsixV0X8+4kQ/k5hsHZ2guafzNl6ASGeaslmTO3Qe6UOJNMpd9kyDlsVGLAA6fsu25Q/R7BReOhSpn1hVQIptgspYh8gagMETldOLl/w0udwRqKVROgcooWa+ltp1R8UGds2R1nM="
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "uyjulian/spc2it"
|
|
description: "spc to it"
|
|
build_command_prepend: "mkdir build && cd build && cmake .."
|
|
build_command: "make"
|
|
branch_pattern: coverity_scan
|