From ab4ccc9f9401de61e8b05c9e94bed4bfc815b9fb Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 25 Nov 2018 12:55:55 +0900 Subject: [PATCH 1/5] =?UTF-8?q?travis-ci=20=E3=81=AE=E3=83=86=E3=82=B9?= =?UTF-8?q?=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..331c2e5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: generic +os: linux +dist: trusty + +addons: + apt: + packages: + - cppcheck + +script: + - cppcheck --version From 5e2d3f59917c97c5930b0c59483e9c52fd1dece7 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 25 Nov 2018 13:00:06 +0900 Subject: [PATCH 2/5] =?UTF-8?q?sudo=20=E3=81=AB=E3=82=88=E3=82=8B=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=82=B9=E3=83=88=E3=83=BC=E3=83=AB=E3=81=AB=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 331c2e5..5dc0029 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,13 @@ language: generic os: linux dist: trusty -addons: - apt: - packages: - - cppcheck +#addons: +# apt: +# packages: +# - cppcheck + +install: + - sudo apt-get install -qq cppcheck script: - cppcheck --version From cd8fb35b5d7a591679e7f23ca53e975830fad60f Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 25 Nov 2018 14:44:30 +0900 Subject: [PATCH 3/5] =?UTF-8?q?xenial=20=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5dc0029..31dc5c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: generic os: linux -dist: trusty +dist: xenial #addons: # apt: From bd7da951f6ba9f8c85e8966086389615b1fe04f4 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 25 Nov 2018 20:29:46 +0900 Subject: [PATCH 4/5] =?UTF-8?q?matrix=20=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 31dc5c0..44e1762 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,13 +2,18 @@ language: generic os: linux dist: xenial -#addons: -# apt: -# packages: -# - cppcheck +matrix: + include: + - env: platform=Win32 configuration=Release + - env: platform=Win32 configuration=Debug + - env: platform=x64 configuration=Release + - env: platform=x64 configuration=Debug -install: - - sudo apt-get install -qq cppcheck +addons: + apt: + packages: + - cppcheck script: - cppcheck --version + - echo $(platform) $(configuration) From b406ebec5567724ef384b5c567262b79ba9c88ba Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 25 Nov 2018 20:32:04 +0900 Subject: [PATCH 5/5] =?UTF-8?q?=E6=8B=AC=E5=BC=A7=E3=82=92=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 44e1762..470144b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,4 +16,4 @@ addons: script: - cppcheck --version - - echo $(platform) $(configuration) + - echo ${platform} ${configuration}