diff options
author | mj-xmr <mjxmr@protonmail.com> | 2020-12-20 08:27:10 +0100 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2020-12-20 08:27:10 +0100 |
commit | e80f8d7ad8d4fbc4db6c06faaeae0d790e3a100e (patch) | |
tree | 923cf4140c2b614172a33472d9fc56fa35f5f3d4 /.github/workflows | |
parent | Merge pull request #7151 (diff) | |
download | monero-e80f8d7ad8d4fbc4db6c06faaeae0d790e3a100e.tar.xz |
apt update before installing
Diffstat (limited to '.github/workflows')
-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: | |