From 6f7c3a7cdf5eaf744443ad6c693ea12176bc88d2 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 1 Oct 2021 13:13:05 +0300 Subject: [PATCH] ci: do `brew install openssl` on the macos job, reduce flakyness of tcp_test.v --- .github/workflows/ci.yml | 2 +- vlib/net/tcp_test.v | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf07c1cbfb..147b4ffcd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -269,7 +269,7 @@ jobs: run: | ##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 postgresql openssl export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/" - name: Build V run: make -j4 && ./v -cg -cstrict -o v cmd/v diff --git a/vlib/net/tcp_test.v b/vlib/net/tcp_test.v index cbd2aa4efd..ff3c02f346 100644 --- a/vlib/net/tcp_test.v +++ b/vlib/net/tcp_test.v @@ -1,3 +1,4 @@ +// vtest retry: 3 import net import os