From 6bf7ae386a1a0fbaeb343fb39cc102fd6a9661cf Mon Sep 17 00:00:00 2001 From: Tomohiro IKEDA Date: Sun, 15 May 2022 10:14:23 +0900 Subject: [PATCH] chore: Unify Travis CI process to GitHub Actions --- .github/workflows/build.yml | 4 ++++ .gitignore | 1 - .travis.yml | 5 ----- 3 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e23bd5023..9a1be0b62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,3 +96,7 @@ jobs: - name: Install run: | make install + + gitcompile: + run: sed 's/-Wunused-const-variable=0//g' < gitcompile > gitcompile.sh + run: bash gitcompile.sh diff --git a/.gitignore b/.gitignore index 88d6b6ad4..098de14dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ .* -!.travis.yml configure config.log config.cache diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e32b0f775..000000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -sudo: required -language: c -script: - - sed 's/-Wunused-const-variable=0//g' < gitcompile > gitcompile.travis - - bash gitcompile.travis