From d99f7745b612ae356d3312b57e3ea22d98398b12 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 1 Mar 2021 12:50:21 +0100 Subject: [PATCH] apt-get update may be required on workflows --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a41de6b9..fe23dad3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Update packages list + run: sudo apt-get update + - name: Install dependencies run: sudo apt-get install -y build-essential libtool autoconf automake tcc @@ -33,6 +36,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Update packages list + run: sudo apt-get update + - name: Install dependencies run: sudo apt-get install -y build-essential libtool autoconf automake @@ -59,6 +65,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Update packages list + run: sudo apt-get update + - name: Install dependencies run: sudo apt-get install -y build-essential libtool autoconf automake @@ -74,6 +83,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Update packages list + run: sudo apt-get update + - name: Install dependencies run: sudo apt-get install -y build-essential libtool autoconf automake clang @@ -97,6 +109,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Update packages list + run: sudo apt-get update + - name: Install dependencies run: sudo apt-get install -y build-essential libtool autoconf automake qemu-user-static gcc-powerpc-linux-gnu