Skip to content

Commit

Permalink
Remove cygwin from Appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
evanmiller committed Jan 15, 2023
1 parent c286728 commit de3c7e1
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ platform: x64
environment:
matrix:
- TOOLCHAIN: "msvc"
- TOOLCHAIN: "cygwin"

skip_tags: true

Expand All @@ -34,23 +33,9 @@ for:
except:
- TOOLCHAIN: "msvc"

build_script:
- ps: |
if ($env:TOOLCHAIN -eq "cygwin")
{
C:\cygwin64\setup-x86_64.exe -qnNdO -s http://cygwin.mirror.constant.com -l C:/cygwin64/var/cache/setup -P libiconv-devel -P ragel -P zlib-devel
C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/readstat && ./autogen.sh"
C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/readstat && ./configure"
C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/readstat && make"
}
test_script:
- ps: |
if ($env:TOOLCHAIN -eq "cygwin")
{
C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/readstat && make check"
}
else
if ($env:TOOLCHAIN -eq "msvc")
{
$state = "PASS"
$tests = @("readstat","double_decimals","sav_date","dta_days")
Expand Down Expand Up @@ -79,10 +64,3 @@ test_script:
exit 1
}
}
on_success:
- ps: |
if ($env:TOOLCHAIN -eq "cygwin")
{
C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/readstat && cat ./test-suite.log"
}

0 comments on commit de3c7e1

Please sign in to comment.