mirror of
https://github.com/danbulant/deno_install
synced 2026-06-24 17:21:48 +00:00
28 lines
No EOL
601 B
YAML
28 lines
No EOL
601 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: iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
|
|
- ps: scoop install pwsh
|
|
test_script:
|
|
- ps: .\install_test.ps1
|
|
- ps: pwsh install_test.ps1
|
|
|
|
- matrix:
|
|
only:
|
|
- TYPE: python
|
|
install:
|
|
- "%PYTHON_DIR%\\python.exe install.py"
|
|
test_script:
|
|
- "%PYTHON_DIR%\\python.exe install_test.py" |