Current Runner | Job | Monthly Minutes | CPUs used now | Price per minute | Cost per month |
---|---|---|---|---|---|
Cirrus | 32-bit CentOS, dash, gui | 196 | 2x | 0.004 | 0.784 |
Cirrus | ARM, unit tests, no functional tests | 4162 | 2x ARM | 0.003 | 12.486 |
Cirrus | CentOS, depends, gui | 12398 | 2x | 0.004 | 49.592 |
Cirrus | MSan, depends | 22770 | 2x | 0.004 | 91.08 |
Cirrus | TSan, depends, gui | 22572 | 4x | 0.008 | 180.576 |
Cirrus | Win64, unit tests, no gui tests, no functional tests | 181 | 2x | 0.004 | 0.724 |
Cirrus | Win64-cross | 5919 | 2x | 0.004 | 23.676 |
Cirrus | fuzzer,address,undefined,integer, no depends | 42529 | 4x | 0.008 | 340.232 |
Fork and clone the following repos on host:
Clone the following repo:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Core Lightning | |
After=network.target | |
[Service] | |
ExecStart=/usr/local/bin/lightningd --alias myalias --rbg 000000 --network bitcoin --daemon --pid-file /run/lightningd/lightningd.pid --log-file /home/bitcoin/.lightning/debug.log --proxy 127.0.0.1 --fee-base=0 --fee-per-satoshi=25 | |
PermissionsStartOnly=yes | |
RuntimeDirectoryMode=0775 | |
RuntimeDirectory=lightningd | |
RuntimeDirectoryPreserve=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Core Lightning Backup | |
After=network.target | |
[Service] | |
ExecStart=/opt/lightning/backup.sh | |
User=bitcoin | |
Group=bitcoin | |
Restart=on-failure | |
RestartSec=20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Just a simple wrapper to start bitcoind. | |
# | |
# If using systemd, simply create a file (e.g. /etc/systemd/system/bitcoind.service) | |
# from example file below and add this script in ExecStart. | |
# https://raw.521000.best-/bitcoin/bitcoin/76deb30550b2492f9c8d9f0302da32025166e0c5/contrib/init/bitcoind.service | |
# | |
# Then run following to always start: | |
# systemctl enable bitcoind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
git branch | grep "LPA" | xargs git branch -D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Tune fsync perf for docker mac per | |
# https://github.com/docker/for-mac/issues/668 | |
# NB: You must be on Docker 1.12.2-rc1-beta27 or greater | |
cd ~/Library/Containers/com.docker.docker/Data/database/ | |
f="com.docker.driver.amd64-linux/disk/full-sync-on-flush" | |
git reset --hard | |
cat $f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git checkout master && echo && git pull && echo)' \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host github.com | |
Hostname ssh.github.com | |
Port 443 | |
ProxyCommand connect -H 127.0.0.1:3128 %h %p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ga { | |
{ git ls-files -o --exclude-standard --full-name | while read -r file; do | |
read -u 3 -n 1 -p "Do you wish to add new file \"$file\"? (y/n) " answer | |
if echo "$answer" | grep -iq "^y" ;then | |
git add $file | |
echo $'\nAdded file\n' | |
else | |
echo $'\nSkipping file\n' | |
fi | |
done; } 3<&0 |
NewerOlder