File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,17 @@ install:
17
17
- cmd : SET PATH=%M2_HOME%\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=%;
18
18
- cmd : mvn --version
19
19
- cmd : java -version
20
+ - ps : |
21
+ Add-Type -AssemblyName System.IO.Compression.FileSystem
22
+ if (!(Test-Path -Path "C:\uctags" )) {
23
+ Write-Host "Downloading Universal Ctags"
24
+ # Project has not had a versioned release so far, but looks like these nightly builds are retained for at least a year
25
+ # so picked an arbitrary version to use for tests
26
+ (new-object System.Net.WebClient).DownloadFile("https://github.com/universal-ctags/ctags-win32/releases/download/2018-09-29%2Fd0807887/ctags-2018-09-29_d0807887-x86.zip", 'C:\uctags-bin.zip')
27
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\uctags-bin.zip", "C:\uctags")
28
+ }
20
29
build_script :
21
- - mvn -B -V clean verify
30
+ - mvn -B -V -Dorg.opengrok.indexer.analysis.Ctags=c:\uctags\ctags.exe clean verify
22
31
cache :
23
32
- C:\maven\ -> appveyor.yml
24
33
- C:\Users\appveyor\.m2\ -> pom.xml
You can’t perform that action at this time.
0 commit comments