{"id":14984683,"url":"https://github.com/rutujar/helloworld_travis_demo","last_synced_at":"2025-04-10T21:21:11.066Z","repository":{"id":129019913,"uuid":"142134434","full_name":"rutujar/helloworld_travis_demo","owner":"rutujar","description":"This is a demo program using continuous integration tools such as Travis,Jenkins,Circle ci and AppVeyor. Many more will be updated shortly","archived":false,"fork":false,"pushed_at":"2019-04-05T17:24:12.000Z","size":24128,"stargazers_count":6,"open_issues_count":1,"forks_count":13,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T18:49:38.829Z","etag":null,"topics":["appveyor","c","circleci","circleci-demos","codacy","code-quality","cpp","csharp","go","java","javascript","jenkins","jenkins-ci","python","r","scala","travis","travis-ci","travis-ci-demo","travis-ci-github"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rutujar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-24T09:14:30.000Z","updated_at":"2023-02-13T16:17:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"ebed47a2-5695-4e81-863f-82036a0f0b62","html_url":"https://github.com/rutujar/helloworld_travis_demo","commit_stats":{"total_commits":253,"total_committers":2,"mean_commits":126.5,"dds":"0.0039525691699604515","last_synced_commit":"4bf6bcd87459e8af1cf5c5f5c3f6e703d045cf1e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rutujar%2Fhelloworld_travis_demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rutujar%2Fhelloworld_travis_demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rutujar%2Fhelloworld_travis_demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rutujar%2Fhelloworld_travis_demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rutujar","download_url":"https://codeload.github.com/rutujar/helloworld_travis_demo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248298979,"owners_count":21080445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appveyor","c","circleci","circleci-demos","codacy","code-quality","cpp","csharp","go","java","javascript","jenkins","jenkins-ci","python","r","scala","travis","travis-ci","travis-ci-demo","travis-ci-github"],"created_at":"2024-09-24T14:09:31.039Z","updated_at":"2025-04-10T21:21:11.040Z","avatar_url":"https://github.com/rutujar.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Travis_Demo_KPIT\n\n [![Build Status](https://travis-ci.org/rutujar/helloworld_travis_demo.svg?branch=master)](https://travis-ci.org/rutujar/helloworld_travis_demo)   [![CircleCI](https://circleci.com/gh/rutujar/helloworld_travis_demo.svg?style=svg)](https://circleci.com/gh/rutujar/helloworld_travis_demo)  [![Build status](https://ci.appveyor.com/api/projects/status/2wp50shl25yfw19q?svg=true)](https://ci.appveyor.com/project/rutujar/helloworld-travis-demo)  [![codecov](https://codecov.io/gh/rutujar/helloworld_travis_demo/branch/master/graph/badge.svg)](https://codecov.io/gh/rutujar/helloworld_travis_demo) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/0c0be9dca0474d9ea18d6e65c70c0514)](https://app.codacy.com/app/rutujar/helloworld_travis_demo?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=rutujar/helloworld_travis_demo\u0026utm_campaign=Badge_Grade_Dashboard) \n\n\n[![GitHub last commit](https://img.shields.io/github/last-commit/rutujar/helloworld_travis_demo.svg)](https://github.com/rutujar/helloworld_travis_demo) \n[![GitHub repo size in bytes](https://img.shields.io/github/repo-size/rutujar/helloworld_travis_demo.svg)](https://github.com/rutujar/helloworld_travis_demo) \n[![GitHub stars](https://img.shields.io/github/stars/rutujar/helloworld_travis_demo.svg)](https://github.com/rutujar/helloworld_travis_demo) \n \n \n \n \n \n \n \n \n\n \nIn this project, your goal is to write a program and implement various Continous Integration tools using Travis, Jenkins,Appveyor,Circle CI for my Internship @KPIT.\n\n\n## DOCUMENTATION\n\nNothing to \u003cSTRONG\u003eINSTALL\u003c/STRONG\u003e it is easy to use.\n\n# STEPS\n\n* add code to the github file.\n* follow travis syntax and refer to [travis documentation](https://docs.travis-ci.com/)\n* run the code.\n\n# To run and test my project\n*  Fork the document \n*  open travis website, enable the repository\n*  build the project\n\n# TRAVIS CI SYNTAX\n\n## C \n\n```\nlanguage: c  \nsudo: false # only for faster builds  \ncompiler:\n   - clang\n   - gcc\nscript:  \n   - gcc -o test test.c #test is filename.c\n   - ./test\n```\n\n## CPP(C++)\n\n```\nlanguage: cpp  \ncompiler: gcc  \ndist: trusty  \nbefore_install:  \n - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test\n - sudo apt-get update -qq  \ninstall:   \n - sudo apt-get install -qq g++-6  \n - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90  \nscript:   \n - g++ swap.cpp -std=c++17 -o travis_gcc_cpp17  \n - ./travis_gcc_cpp17 \n```\n\n## JAVA\n\n```\nlanguage: java\njdk: oraclejdk8\nscript: \n  - javac test.java\n  - java test\n```\n\n## PYTHON\n\n```\nlanguage: python\npython: 3.6\ncache: pip\nbefore_script:\n - easy_install distribute\n - pip install -r requirements.txt\nscript: \n - python test.py\n```\n\n## RUBY\n\n```\nlanguage: ruby\nsudo: false\nscript: \n - ruby hello.rb\nrvm:\n - 1.9.3\n```\n\n# How to contribute\nFork the repository, read the rest of the file and make some changes. Once you're done with your changes send a pull request. I will merge it. Thanks!\n\n# LICENSE\n\n[![](https://img.shields.io/github/license/sourcerer-io/hall-of-fame.svg?colorB=ff0000)](https://github.com/rutujar/helloworld_travis_demo/blob/master/LICENSE)\n\n## Support Me\nIf you liked this, leave a star and fork it! :star: \n\nIf you liked this and also liked my other work, be sure to follow me for more! :slightly_smiling_face:\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frutujar%2Fhelloworld_travis_demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frutujar%2Fhelloworld_travis_demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frutujar%2Fhelloworld_travis_demo/lists"}