aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml24
-rw-r--r--dist/appveyor/configure.ps12
-rw-r--r--dist/appveyor/setup.ps15
3 files changed, 18 insertions, 13 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 2d4351232..f30e0b04f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -78,21 +78,21 @@ test_script:
# ==============================================================================
# Deployment configuration
# ==============================================================================
-deploy:
- - provider: GitHub
- release: GHDL-v$(appveyor_build_version)
- description: 'Release description'
- draft: false
- prerelease: false
+#deploy:
+# - provider: GitHub
+# release: GHDL-v$(appveyor_build_version)
+# description: 'Release description'
+# draft: false
+# prerelease: false
# on:
# branch: master
# appveyor_repo_tag: true
- auth_token:
- secure: 7K/sSRV3kBk/Iw/d1NGd0pAv9Qf0+lGba3UWt9RDLcIsM8binjC2ogPINilWfy46
- - provider: Environment
- name: GitHub Paebbels/ghdl
- on:
- branch: master
+# auth_token:
+# secure: 7K/sSRV3kBk/Iw/d1NGd0pAv9Qf0+lGba3UWt9RDLcIsM8binjC2ogPINilWfy46
+# - provider: Environment
+# name: GitHub Paebbels/ghdl
+# on:
+# branch: master
# scripts to run before deployment
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