summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2021-03-30 08:33:45 +0200
committerEugen Wissner <belka@caraus.de>2021-03-30 08:33:45 +0200
commit60b0562311ea13b2c5956b1a7dc37015e9c38c9b (patch)
tree1be60da08e585a2c9db10c13838fe1054cdbea0a /appveyor.yml
parent92284c85417506c1a753a4741185fd998181d959 (diff)
downloadtanya-60b0562311ea13b2c5956b1a7dc37015e9c38c9b.tar.gz
Update CI information
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index ae78c3e..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-platform: x64
-os: Visual Studio 2015
-
-environment:
- matrix:
- - DC: dmd
- DVersion: 2.091.1
- arch: x64
- - DC: dmd
- DVersion: 2.091.1
- arch: x86
-
-skip_tags: true
-
-install:
- - ps: function SetUpDCompiler
- {
- $env:toolchain = "msvc";
- $version = $env:DVersion;
- Invoke-WebRequest "http://downloads.dlang.org/releases/2.x/$($version)/dmd.$($version).windows.7z" -OutFile "c:\dmd.7z";
- echo "finished.";
- pushd c:\\;
- 7z x dmd.7z > $null;
- popd;
- }
- - ps: SetUpDCompiler
-
-before_build:
- - ps: if($env:arch -eq "x86"){
- $env:compilersetupargs = "x86";
- $env:Darch = "x86_mscoff";
- }
- elseif($env:arch -eq "x64"){
- $env:compilersetupargs = "amd64";
- $env:Darch = "x86_64";
- }
- - ps: $env:PATH += ";C:\dmd2\windows\bin;";
- - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall" %compilersetupargs%
-
-build_script:
- - echo dummy build script - dont remove me
-
-test_script:
- - echo %Darch%
- - echo %PATH%
- - 'dub --version'
- - '%DC% --version'
- - dub test :meta -b unittest --arch=%Darch% --compiler=%DC%
- - dub test :sys -b unittest --arch=%Darch% --compiler=%DC%
- - dub test :os -b unittest --arch=%Darch% --compiler=%DC%
- - dub test :encoding -b unittest --arch=%Darch% --compiler=%DC%
- - dub test :middle -b unittest --arch=%Darch% --compiler=%DC%
- - dub test :test -b unittest --arch=%Darch% --compiler=%DC%
- - dub test -b unittest --arch=%Darch% --compiler=%DC%