diff options
author | selsta <selsta@sent.at> | 2020-09-30 02:01:49 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2020-09-30 02:01:49 +0200 |
commit | 346381f917c9bad9033ca17ba45540e9f96fece6 (patch) | |
tree | 33a72571f03efdfb9f0f9ec4d95b3fd8c2af9e7b /.github/workflows | |
parent | Merge pull request #6841 (diff) | |
download | monero-346381f917c9bad9033ca17ba45540e9f96fece6.tar.xz |
workflows: don't brew update
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8bc1d6498..ad011d4ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ jobs: - uses: actions/checkout@v1 with: submodules: recursive - - name: update brew and install dependencies - run: brew update && brew install boost hidapi zmq libpgm miniupnpc ldns expat libunwind-headers protobuf + - name: install dependencies + run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi zmq libpgm miniupnpc ldns expat libunwind-headers protobuf - name: build run: make -j3 |