diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-04-23 14:18:15 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-04-23 14:28:07 +0200 |
commit | d79fa58f7efc06a048adf9e2172792e64b8abb20 (patch) | |
tree | adb21b7580a4a32a11c46adc13a340ca2aa2f6dc /scripts | |
parent | 82cdb8faaedfaa0c7e860aa024e13bf25e0618b3 (diff) | |
download | ghdl-d79fa58f7efc06a048adf9e2172792e64b8abb20.tar.gz ghdl-d79fa58f7efc06a048adf9e2172792e64b8abb20.tar.bz2 ghdl-d79fa58f7efc06a048adf9e2172792e64b8abb20.zip |
ci: set and use GHWDUMP envvar
Since the tests are executed without installing the package,
the ones that depend on ghwdump do fail on AppVeyor.
Use envvar GHWDUMP in testenv for optionally specifying the location.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/windows/appveyor/test.ps1 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/windows/appveyor/test.ps1 b/scripts/windows/appveyor/test.ps1 index 59faab113..3eaefc827 100644 --- a/scripts/windows/appveyor/test.ps1 +++ b/scripts/windows/appveyor/test.ps1 @@ -50,6 +50,7 @@ Write-Host "Run testsuites..." -ForegroundColor Yellow cd "$($env:APPVEYOR_BUILD_FOLDER)\testsuite" # Use a MinGW compatible path $env:GHDL="$($env:GHDL_PREFIX_DIR)/bin/ghdl.exe" +$env:GHWDUMP="$($env:GHDL_PREFIX_DIR)/bin/ghwdump.exe" # Exit status $Err = 0 |