Skip to content

backmeupplz/ci-ninja

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ci-ninja

CI service written in node, inspired by node-cd

Usage

  1. git clone https://github.com/backmeupplz/ci-ninja on the server
  2. Add scripts with the name like {repository-name}-{branch-name}.sh to scripts
  3. Make sure the files are executable (like sudo chmod +x {repository-name}-{branch-name}.sh)
  4. Add Webhook from your GitHub repository to http://{server-ip}:61439

Aaaaand you're done.

Samples

memcoin-main.sh

My sample deploy script that I put on the server in scripts folder.

#!/bin/bash
set -e

{ # try
  cd /home/memcoin &&
  git reset --hard &&
  git pull &&
  yarn &&
  yarn build-ts &&
  sudo systemctl restart memcoin &&
  curl 'https://api.telegram.org/bot1234/sendMessage?chat_id=1234&text=✅ Memcoin deployed'
} || { # catch
  curl 'https://api.telegram.org/bot1234/sendMessage?chat_id=1234&text=💥 Memcoin failed to deploy'
}

ci-ninja.service

My sample systemd service for ubuntu to run ci-ninja

[Unit]
Description=Service to start ci-ninja
After=network.target

[Service]
WorkingDirectory=/home/ci-ninja
ExecStart=/usr/bin/node /home/ci-ninja/index.js

[Install]
WantedBy=multi-user.target

memcoin.service

My sample systemd service for Telegram bots

[Unit]
Description=Service to start memcoin Telegram bot
After=mongodb.service

[Service]
WorkingDirectory=/home/memcoin
ExecStart=/usr/bin/yarn distribute
Restart=always
RestartSec=3

[Install]
WantedBy=multi-user.target

License

MIT — use for any purpose. Would be great if you could leave a note about the original developers. Thanks!

About

CI service written in node

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •