diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-12-26 13:41:22 -0800 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-12-26 13:41:22 -0800 |
commit | 635ea3df2e77e49b3b60bed3cde91f5b65c12d2b (patch) | |
tree | 9f68c4e80649ebdd8e0729e88b0d1be8c50ade74 | |
parent | Merge pull request #7154 (diff) | |
parent | apt update before installing (diff) | |
download | monero-635ea3df2e77e49b3b60bed3cde91f5b65c12d2b.tar.xz |
Merge pull request #7172
e80f8d7ad apt update before installing (mj-xmr)
-rw-r--r-- | .github/workflows/depends.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/depends.yml b/.github/workflows/depends.yml index 85a05f673..3e0f048c7 100644 --- a/.github/workflows/depends.yml +++ b/.github/workflows/depends.yml @@ -60,7 +60,7 @@ jobs: echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom echo "Acquire::ftp::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom - name: install dependencies - run: sudo apt -y install build-essential libtool cmake autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache ${{ matrix.toolchain.packages }} + run: sudo apt update; sudo apt -y install build-essential libtool cmake autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache ${{ matrix.toolchain.packages }} - name: prepare apple-darwin11 if: ${{ matrix.toolchain.host == 'x86_64-apple-darwin11' }} run: | |