Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rails-sqlserver/tiny_tds
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 222e7b376294929b400db712c37cd4bfe4fe8890
Choose a base ref
..
head repository: rails-sqlserver/tiny_tds
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 501156d5519977f9b688d0a1eadc616b874a42ff
Choose a head ref
Showing with 10 additions and 1 deletion.
  1. +10 −1 appveyor.yml
11 changes: 10 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,16 @@ install:
- perl --version
- ruby --version
- gem --version

# Update keyring according to https://www.msys2.org/news/#2020-06-29-new-packagers
- C:\msys64\usr\bin\curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz
- C:\msys64\usr\bin\curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz.sig
- ridk exec bash -c "pacman-key --verify msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz.sig"
- ridk exec bash -c "pacman -U --noconfirm --config <(echo) msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz"
# update packages
- C:\msys64\usr\bin\pacman --noconfirm --ask 20 --sync --refresh --refresh --sysupgrade --sysupgrade
# Kill all running msys2 binaries to avoid error "size of shared memory region changed".
# See https://github.com/msys2/MSYS2-packages/issues/258
- powershell -Command "Get-Process | Where-Object {$_.path -like 'C:\msys64*'} | Stop-Process"
# prevent freetds to link to wrong ws2_32 lib on i686-w64-mingw32
- c:/msys64/usr/bin/rm /usr/lib/w32api/libws2_32.a
# Set up project prerequisits