Travis CI, GitHub ve Bitbucket'ta barındırılan yazılım projelerini derlemek ve test etmek için kullanılan barındırılan bir sürekli entegrasyon hizmetidir.
.travis.yml
dosyası: CI/CD boru hattını tanımlarlanguage: ruby
rvm:
- 2.7
script:
- bundle exec rake test
os: linux
dist: focal
before_install
install
before_script
script
after_success
veya after_failure
before_deploy
(isteğe bağlı)deploy
(isteğe bağlı)after_deploy
(isteğe bağlı)after_script
before_install:
- sudo apt-get update
install:
- bundle install
before_script:
- bundle exec rake db:create
script:
- bundle exec rake test
after_success:
- coveralls
language: ruby
rvm:
- 2.7
- 3.0
language: node_js
node_js:
- 14
- 16
language: python
python:
- "3.8"
- "3.9"
env:
- DB=postgres
- SH=bash
- PACKAGE_VERSION="1.0.*"
travis encrypt
komutunu kullanın:
travis encrypt SOMEVAR="secretvalue" --add env.global
script:
- echo $DB
deploy:
provider: heroku
api_key: "API ANAHTARINIZ"
app: "UYGULAMA ADINIZ"
deploy:
provider: s3
access_key_id: "AWS ERİŞİM ANAHTARINIZ"
secret_access_key: "AWS GİZLİ ANAHTARINIZ"
bucket: "S3 Bucket"
skip_cleanup: true
cache:
directories:
- $HOME/.cache/pip
- node_modules
language: node_js
cache: npm
language: python
python:
- "3.8"
- "3.9"
env:
- DJANGO=2.2
- DJANGO=3.0
matrix:
exclude:
- python: "3.8"
env: DJANGO=3.0
notifications:
email:
recipients:
- bir@ornek.com
- diger@ornek.com
on_success: never
on_failure: always
notifications:
slack: "SLACK YETKİLENDİRME BELIRTECINIZ"
services:
- docker
before_install:
- docker build -t myapp .
- docker run -d -p 127.0.0.1:80:4567 myapp
after_success:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- docker push KULLANICI/DEPO
services:
- mysql
before_script:
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
services:
- postgresql
before_script:
- psql -c 'CREATE DATABASE travis_ci_test;' -U postgres
branches:
only:
- main
- stable
jobs:
include:
- if: branch = main
script: npm run deploy
body='{
"request": {
"branch":"main"
}}'
curl -s -X POST -H "Content-Type: application/json" -H "Accept: application/json" -H "Travis-API-Version: 3" -H "Authorization: token TRAVIS-API-BELIRTECINIZ" -d "$body" https://api.travis-ci.com/repo/SAHIP%2FDEPO/requests
curl -H "Travis-API-Version: 3" -H "Authorization: token TRAVIS-API-BELIRTECINIZ" https://api.travis-ci.com/repo/SAHIP%2FDEPO/builds
.travis.yml
dosyanızı basit ve okunabilir tutunTravis CI CLI'yi kullanın:
travis lint
.travis.yml
dosyanıza ekleyin:
before_install:
- env
- ls -la
2024 © Tüm hakları saklıdır - buraxta.com