Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
3e9610a0
Commit
3e9610a0
authored
Oct 01, 2015
by
Fabio Bas
Browse files
Fix artifact names
parent
6a869906
Changes
1
Hide whitespace changes
Inline
Side-by-side
appveyor.yml
View file @
3e9610a0
...
...
@@ -68,9 +68,9 @@ build_script:
-
c:\cygwin\bin\ls -l
-
ps
:
|
$exe = dir -name *.exe
$new_name = $exe.Replace(".exe", "-$env:target_arch_qt5.exe")
$new_name = $exe.Replace(".exe", "-$
{
env:target_arch
}
_qt5.exe")
Push-AppveyorArtifact $exe -FileName $new_name
$cmake_name = $exe.Replace(".exe", "-$env:target_arch_qt5.cmake.txt")
$cmake_name = $exe.Replace(".exe", "-$
{
env:target_arch
}
_qt5.cmake.txt")
Push-AppveyorArtifact CMakeCache.txt -FileName $cmake_name
$json = New-Object PSObject
(New-Object PSObject | Add-Member -PassThru NoteProperty bin $new_name | Add-Member -PassThru NoteProperty cmake $cmake_name | Add-Member -PassThru NoteProperty commit $env:APPVEYOR_REPO_COMMIT) | ConvertTo-JSON | Out-File -FilePath "latest-$env:target_arch" -Encoding ASCII
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment