mirror of
https://github.com/danbulant/deno_install
synced 2026-06-21 07:42:23 +00:00
31 lines
No EOL
760 B
YAML
31 lines
No EOL
760 B
YAML
environment:
|
|
matrix:
|
|
- TYPE: powershell
|
|
- TYPE: python
|
|
PYTHON_DIR: "C:\\Python27"
|
|
- TYPE: python
|
|
PYTHON_DIR: "C:\\Python33"
|
|
|
|
build: off
|
|
|
|
for:
|
|
- matrix:
|
|
only:
|
|
- TYPE: powershell
|
|
install:
|
|
- ps: $url = "https://raw.githubusercontent.com", $env:APPVEYOR_REPO_NAME,
|
|
$env:APPVEYOR_REPO_COMMIT, "install.ps1" -join "/"
|
|
- ps: iex (iwr $url)
|
|
test_script:
|
|
- ps: if (-not (Test-Path "~\.deno\bin\deno.exe")) {
|
|
throw "deno.exe not found in expected location"
|
|
}
|
|
- ps: deno --help
|
|
|
|
- matrix:
|
|
only:
|
|
- TYPE: python
|
|
install:
|
|
- "%PYTHON_DIR%\\python.exe install.py"
|
|
test_script:
|
|
- "%PYTHON_DIR%\\python.exe install_test.py" |