diff options
author | MSP-Greg <MSP-Greg@users.noreply.github.com> | 2019-05-28 16:03:30 -0500 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2019-05-29 09:14:01 +0900 |
commit | f60a59ed20648ddc4784d2dcb172d10c5f3405ed (patch) | |
tree | 0b2ad56162cb000fced2a8a581a2b05730e63782 /appveyor.yml | |
parent | 98ba116d402e7c255dae78ce43b76723a56c4cb7 (diff) |
appveyor.yml - update for msys2 - pdcurses, force toolchain
Closes: https://github.com/ruby/ruby/pull/2208
Merging the PR for fixing AppVeyor msys2 failure related to GCC 9 like:
https://ci.appveyor.com/project/ruby/ruby/builds/24877992/job/ned5k4k5rwxnld5j
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 505e70cec8..b1eeaafd1d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -99,8 +99,10 @@ for: build_script: # always update database - pacman -Sy - - pacman -S --noconfirm --needed --noprogressbar mingw-w64-x86_64-toolchain - - pacman -S --noconfirm --needed --noprogressbar mingw-w64-x86_64-gdbm mingw-w64-x86_64-gmp mingw-w64-x86_64-libffi mingw-w64-x86_64-ncurses mingw-w64-x86_64-readline mingw-w64-x86_64-zlib + - pacman -S --noconfirm --needed --noprogressbar --nodeps mingw-w64-x86_64-toolchain + # 2019-May-29 delete below after next Appveyor msys2 update, above line remove '--nodeps' + - pacman -S --noconfirm --needed --noprogressbar mingw-w64-x86_64-python3 mingw-w64-x86_64-readline mingw-w64-x86_64-sqlite3 + - pacman -S --noconfirm --needed --noprogressbar mingw-w64-x86_64-gdbm mingw-w64-x86_64-gmp mingw-w64-x86_64-libffi mingw-w64-x86_64-openssl mingw-w64-x86_64-pdcurses mingw-w64-x86_64-readline mingw-w64-x86_64-zlib - cd %APPVEYOR_BUILD_FOLDER% - set CFLAGS=-march=%MSYS2_ARCH:_=-% -mtune=generic -O3 -pipe - set CXXFLAGS=%CFLAGS% |