diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df6b084c89..20e3f6ee1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index 4c8c222bad..c13e4d31c4 100644 --- a/.github/workflows/periodic.yml +++ b/.github/workflows/periodic.yml @@ -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