This file contains 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
$rubies = @( | |
@{ | |
"version" = "Ruby 2.6.9-1" | |
"install_path" = "C:\Ruby26" | |
"download_url" = "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.9-1/rubyinstaller-2.6.9-1-x86.exe" | |
"devkit_url" = "" | |
"devkit_paths" = @() | |
"bundlerV2" = $true | |
} | |
@{ |
This file contains 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
{ | |
"info": { | |
"title": "Win32/Win64 OpenSSL Installer Hashes", | |
"description": "Latest file hashes for Win32/Win64 OpenSSL installers.", | |
"source": "https://github.com/slproweb/opensslhashes/", | |
"alt_source": "https://github.com/slproweb/opensslhashes/raw/master/win32_openssl_hashes.json", | |
"website": "https://slproweb.com/products/Win32OpenSSL.html" | |
}, | |
"files": { | |
"Win32OpenSSL-1_1_1w.exe": { |
This file contains 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 | |
USE=$1 | |
VERSION=$2 | |
OPTIONS=$3 | |
COUNT="${VERSION//[^.]}" | |
echo "dot count: ${#COUNT}" | |
# cut version down if necessary |
This file contains 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
sudo systemsetup -setremotelogin on | |
sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist | |
#sudo launchctl load -w /System/Library/LaunchAgents/com.apple.screensharing.agent.plist | |
This file contains 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
environment: | |
LARGE_FILE: node-7.8.0-x64.7z | |
LARGE_FILE_MD5: 781ca1e775f0f9811bb552f9e08e8af0 | |
test_script: | |
- cmd: dir node-7.8.0-x64.7z | |
- git --version | |
- git lfs version | |
- brew upgrade git-lfs | |
- git lfs version |
This file contains 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
Write-Host "Installing boost 1.83.0..." -ForegroundColor Cyan | |
New-Item 'C:\Libraries' -ItemType Directory -Force | |
Write-Host "Downloading x86..." | |
$exePath = "$env:TEMP\boost_1_83_0-msvc-14.3-32.exe" | |
(New-Object Net.WebClient).DownloadFile('https://boostorg.jfrog.io/artifactory/main/release/1.83.0/binaries/boost_1_83_0-msvc-14.3-32.exe', $exePath) | |
Write-Host "Installing x86..." |
This file contains 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
image: Visual Studio 2015 | |
environment: | |
matrix: | |
- JOB_NAME: test | |
JOB_DESC: "the one that should run every time" | |
- JOB_NAME: release | |
JOB_DESC: "the one that should run on the release branch" |
This file contains 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
$env:API_TOKEN="your_api_token" # use secure variable in case script runs from the build | |
$env:APPVEYOR_ACCOUNT_NAME="your_account_name" # no need to setup in case script runs from the build (default environment variable) | |
$env:APPVEYOR_PROJECT_SLUG="your_project_slug" # no need to setup in case script runs from the build (default environment variable) | |
$env:RECORDS_NUMBER=100 # build history depth to search | |
$env:BRANCH="your_branch" # which branch's builds do you want to return | |
$headers = @{ | |
"Authorization" = "Bearer $env:API_TOKEN" | |
"Content-type" = "application/json" | |
} |
This file contains 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
Param( | |
[string]$environmentName1, | |
[string]$environmentName2, | |
[string]$buildVersion | |
) | |
$accountName = <your-account-name> | |
$projectSlug = <your-project-slug> | |
$token = $env:API_TOKEN #This should be added as a secure variable. Other variables used in script already exist |
This file contains 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
Param( | |
[string]$yamlPath | |
) | |
if(!(test-path $yamlPath)) { write-warning "YAML path is invalid"; return; } | |
$token = "<your_token>" | |
$headers = @{ | |
"Authorization" = "Bearer $token" |