Navigation Menu

Skip to content

Commit

Permalink
appveyor: fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 25, 2018
1 parent 69729c6 commit 905b30d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions appveyor.yml
Expand Up @@ -41,6 +41,7 @@ install:
# - choco install -y imdisk-toolkit
# - mkdir tmp
# - imdisk -a -t file -m tmp -o awe -s 1G -p "/fs:ntfs /q /y"
- set GROONGA_INSTALL_SUB_FOLDER=インストール
- ps: |
$Env:GROONGA_VERSION = (Get-Content base_version)
if ($Env:APPVEYOR_REPO_TAG -eq "false") {
Expand All @@ -52,7 +53,7 @@ install:
} else {
$Env:GROONGA_INSTALL_FOLDER += "-x64"
}
$Env:FULL_GROONGA_INSTALL_FOLDER = $Env:APPVEYOR_BUILD_FOLDER + "\インストール\" + $Env:GROONGA_INSTALL_FOLDER
$Env:FULL_GROONGA_INSTALL_FOLDER = $Env:APPVEYOR_BUILD_FOLDER + "\" + $Env:GROONGA_INSTALL_SUB_FOLDER + "\" + $Env:GROONGA_INSTALL_FOLDER
build_script:
- git submodule update --init
Expand Down Expand Up @@ -96,6 +97,8 @@ test_script:
test\command\suite

on_success:
- cd %GROONGA_INSTALL_SUB_FOLDER%
- set ARTIFACT=%GROONGA_INSTALL_FOLDER%.zip
- 7z a %ARTIFACT% %GROONGA_INSTALL_FOLDER%
- 7z a %ARTIFACT% %FULL_GROONGA_INSTALL_FOLDER%
- ps: Push-AppveyorArtifact $Env:ARTIFACT
- cd ..

0 comments on commit 905b30d

Please sign in to comment.