aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-12-24 15:45:40 +0100
committerTristan Gingold <tgingold@free.fr>2016-12-24 15:45:40 +0100
commit3a15aa97c771c91c6483e225bd4b848dfa2d761a (patch)
tree160e84141c50f865bed940ac6713360f33aedfe2 /dist
parent23a879632df599ca18a0e122af48b82dc2d54d15 (diff)
downloadghdl-3a15aa97c771c91c6483e225bd4b848dfa2d761a.tar.gz
ghdl-3a15aa97c771c91c6483e225bd4b848dfa2d761a.tar.bz2
ghdl-3a15aa97c771c91c6483e225bd4b848dfa2d761a.zip
appveyor: do not deploy, but create artifacts. Fix llvm build
Diffstat (limited to 'dist')
-rw-r--r--dist/appveyor/configure.ps12
-rw-r--r--dist/appveyor/setup.ps15
2 files changed, 6 insertions, 1 deletions
diff --git a/dist/appveyor/configure.ps1 b/dist/appveyor/configure.ps1
index 73340faf1..7f85cfcba 100644
--- a/dist/appveyor/configure.ps1
+++ b/dist/appveyor/configure.ps1
@@ -62,7 +62,7 @@ if ($env:BUILD_BACKEND -eq "mcode")
elseif ($env:BUILD_BACKEND -eq "llvm")
{ Write-Host "Configuring GHDL for $($env:BUILD_MINGW), LLVM-3.5..." -Foreground Yellow
- c:\msys64\usr\bin\bash.exe -c "../../configure --prefix=$GHDL_PREFIX_DIR --with-llvm-config LDFLAGS=-static" 2>&1 | Restore-NativeCommandStream | %{ "$_" }
+ c:\msys64\usr\bin\bash.exe -c "../../configure --prefix=$GHDL_PREFIX_DIR --with-llvm-config LDFLAGS=-static CXX=g++" 2>&1 | Restore-NativeCommandStream | %{ "$_" }
}
cd $env:APPVEYOR_BUILD_FOLDER
diff --git a/dist/appveyor/setup.ps1 b/dist/appveyor/setup.ps1
index 117d8e9bd..6f9b7459a 100644
--- a/dist/appveyor/setup.ps1
+++ b/dist/appveyor/setup.ps1
@@ -50,5 +50,10 @@ Write-Host "Installing GHDL and libraries..." -Foreground Yellow
cd $env:GHDL_BUILD_DIR
c:\msys64\usr\bin\make.exe install 2>&1 | Restore-NativeCommandStream | %{ "$_" }
+cd c:\Tools
+7z a "$($env:APPVEYOR_BUILD_FOLDER)\ghdl-0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND).zip" -r "GHDL\0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND)\"
+
cd $env:APPVEYOR_BUILD_FOLDER
+Push-AppveyorArtifact "ghdl-0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND).zip"
+
exit 0