mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
apt update before installing
This commit is contained in:
parent
3bd6ed94d7
commit
e80f8d7ad8
1 changed files with 1 additions and 1 deletions
2
.github/workflows/depends.yml
vendored
2
.github/workflows/depends.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
||||||
echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
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
|
echo "Acquire::ftp::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
||||||
- name: install dependencies
|
- 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
|
- name: prepare apple-darwin11
|
||||||
if: ${{ matrix.toolchain.host == 'x86_64-apple-darwin11' }}
|
if: ${{ matrix.toolchain.host == 'x86_64-apple-darwin11' }}
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue