generate travis configuration (#3193)

This commit is contained in:
Min Kim
2019-06-21 21:01:23 +08:00
committed by William Cheng
parent 0e2eed6892
commit b9451e91af
2 changed files with 10 additions and 0 deletions

View File

@@ -167,6 +167,7 @@ public class PerlClientCodegen extends DefaultCodegen implements CodegenConfig {
supportingFiles.add(new SupportingFile("README.mustache", "", "README.md"));
supportingFiles.add(new SupportingFile("gitignore.mustache", "", ".gitignore"));
supportingFiles.add(new SupportingFile("git_push.sh.mustache", "", "git_push.sh"));
supportingFiles.add(new SupportingFile("travis.mustache", "", ".travis.yml"));
}
@Override

View File

@@ -0,0 +1,9 @@
# https://docs.travis-ci.com/user/languages/perl/
#
language: perl
perl:
- "5.28"
sudo: false