aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml
index cf0534eb2..f3ffa1d3b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -34,24 +34,24 @@ environment:
init:
- ps: Write-Host "Initializing virtual machine ..."
- ps: $env:PATH = "C:\msys64\$($env:BUILD_MINGW)\bin;C:\msys64\usr\bin;" + $env:PATH
-# - ps: Import-Module .\dist\appveyor\shared.psm1 -Verbose
+# - ps: Import-Module .\scripts\appveyor\shared.psm1 -Verbose
# installation scripts to run
install:
- - ps: .\dist\windows\appveyor\install.ps1
- - ps: .\dist\windows\appveyor\info.ps1
+ - ps: .\scripts\windows\appveyor\install.ps1
+ - ps: .\scripts\windows\appveyor\info.ps1
# Build flow
# Disable MSBuild
build: off
# build scripts to run
build_script:
- - ps: .\dist\windows\appveyor\build.ps1
+ - ps: .\scripts\windows\appveyor\build.ps1
# Test flow
# test scripts to run
test_script:
- - ps: .\dist\windows\appveyor\test.ps1
+ - ps: .\scripts\windows\appveyor\test.ps1
# =============================================================================