fix CI macOS-latest (failing postgresql brew install)

pull/3734/head
Delyan Angelov 2020-02-13 20:22:13 +02:00 committed by GitHub
parent 8dd905a14d
commit 869e16c340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -68,7 +68,10 @@ jobs:
node-version: 12.x
- name: Install dependencies
run: |
brew install freetype glfw openssl postgres sdl2 sdl2_ttf sdl2_mixer sdl2_image
##brew install libpq openssl freetype ### these are *already installed* on Catalina ...
brew uninstall --ignore-dependencies libpq ## libpq is a dependency of PHP
brew install postgresql
brew install glfw sdl2 sdl2_ttf sdl2_mixer sdl2_image
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
- name: Build V
run: make -j4 && ./v -cg -o v cmd/v

View File

@ -38,7 +38,10 @@ jobs:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
brew install freetype glfw openssl postgres sdl2 sdl2_ttf sdl2_mixer sdl2_image
##brew install libpq openssl freetype ### these are *already installed* on Catalina ...
brew uninstall --ignore-dependencies libpq ## libpq is a dependency of PHP
brew install postgresql
brew install glfw sdl2 sdl2_ttf sdl2_mixer sdl2_image
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
- name: Build V
run: make -j4 && ./v -cg -o v cmd/v