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
/** | |
* Dependencies: js-yaml (for reading .istanbul.yml) | |
* | |
* Nightwatch coverage collection for browser testing, and writes the collected reports to the nightwatch | |
* reports folder. These reports can then be used in conjunction with istanbul report to generate coverage | |
* reports. | |
*/ | |
var fs = require('fs'); | |
var path = require('path'); | |
var yaml = require('js-yaml'); |
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
# Powershell script to trigger a Team City build from Octopus Deploy, and wait for it to be finished | |
# Use case for this is running an automated script (such as test scripts) from Team City as part of | |
# a deployment, and holding the deployment until the script has finished | |
# teamcity-host teamcity host url | |
# teamcity-username teamcity api username | |
# teamcity-password teamcity api password | |
# teamcity-build-configuration-id teamcity build configuration | |
# teamcity-changeset (optional) changeset to build from - NOTE: this is a VCS changeset |
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 | |
##### VARIABLES ##### | |
# LOCATIONS | |
SOURCE_DRIVE=/dev/sr0 | |
OUTPUT_DIR=/tmp/ripdvd | |
MOVIES_DIR=/media/sdc/movies | |
TELEVISION_DIR=/media/sdd/television |