Skip to content

Commit

Permalink
.travis.ymlを追加。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed May 6, 2020
1 parent 38b79a3 commit 06ae670
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 3 deletions.
39 changes: 39 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
language: cpp
os: linux
sudo: required

branches:
only:
- master

matrix:
fast_finish: true
include:
- name: gcc build
compiler: gcc
dist: bionic
env:
- CC=gcc
- CXX=g++
- name: clang build
compiler: clang
dist: bionic
env:
- CC=clang-8
- CXX=clang++-8
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-xenial-8']
packages:
- *native_deps
- clang-8
- clang++-8

before_install:
- sudo -E add-apt-repository -y "ppa:jonathonf/ffmpeg-4"
- sudo apt update
- sudo apt -y install yasm nasm libavcodec-extra58 libavcodec-dev libavutil56 libavutil-dev libavformat58 libavformat-dev libswresample3 libswresample-dev libavfilter-extra7 libavfilter-dev libass9 libass-dev
- $CXX --version

script:
- ./configure && make && ./qsvencc --version
6 changes: 3 additions & 3 deletions QSVPipeline/rgy_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

#include "rgy_rev.h"

#define VER_FILEVERSION 0,4,1,0
#define VER_STR_FILEVERSION "4.01"
#define VER_STR_FILEVERSION_TCHAR _T("4.01")
#define VER_FILEVERSION 0,4,2,0
#define VER_STR_FILEVERSION "4.02"
#define VER_STR_FILEVERSION_TCHAR _T("4.02")

#ifdef _M_IX86
#define BUILD_ARCH_STR _T("x86")
Expand Down

0 comments on commit 06ae670

Please sign in to comment.