This is an automated email from the ASF dual-hosted git repository.

jdanek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/main by this push:
     new 97aad43  NO-JIRA Run apt update in Actions CI, to avoid package 
download failures (#1291)
97aad43 is described below

commit 97aad43ea2c3fdfdc0322b3532efd1cf0ffd66cf
Author: Jiri Daněk <jda...@redhat.com>
AuthorDate: Fri Jul 9 15:44:07 2021 +0200

    NO-JIRA Run apt update in Actions CI, to avoid package download failures 
(#1291)
---
 .github/workflows/build.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 3a32afe..3cb729a 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -107,7 +107,7 @@ jobs:
       - name: Install Linux build dependencies
         if: ${{ runner.os == 'Linux' }}
         run: |
-          sudo apt install -y swig libpython3-dev libsasl2-dev libjsoncpp-dev 
libwebsockets-dev libnghttp2-dev ccache ninja-build pixz
+          sudo apt update; sudo apt install -y swig libpython3-dev 
libsasl2-dev libjsoncpp-dev libwebsockets-dev libnghttp2-dev ccache ninja-build 
pixz
 
       - name: Zero ccache stats
         run: ccache -z
@@ -208,7 +208,7 @@ jobs:
       - name: Install Linux runtime/test dependencies
         if: ${{ runner.os == 'Linux' }}
         run: |
-          sudo apt install -y libsasl2-2 libsasl2-modules sasl2-bin 
libjsoncpp1 libwebsockets15 pixz bubblewrap curl
+          sudo apt update; sudo apt install -y libsasl2-2 libsasl2-modules 
sasl2-bin libjsoncpp1 libwebsockets15 pixz bubblewrap curl
 
       - name: Unpack archive
         run: tar -I pixz -xf archive.tar.xz
@@ -475,12 +475,12 @@ jobs:
       - name: Install Linux build dependencies
         if: ${{ runner.os == 'Linux' }}
         run: |
-          sudo apt install -y libqpid-proton-proactor1-dev python3-qpid-proton 
libpython3-dev libwebsockets-dev libnghttp2-dev ninja-build
+          sudo apt update; sudo apt install -y libqpid-proton-proactor1-dev 
python3-qpid-proton libpython3-dev libwebsockets-dev libnghttp2-dev ninja-build
 
       - name: Install Linux docs dependencies
         if: ${{ runner.os == 'Linux' }}
         run: |
-          sudo apt install -y asciidoc asciidoctor ruby-asciidoctor-pdf 
dblatex libxml2-utils
+          sudo apt update; sudo apt install -y asciidoc asciidoctor 
ruby-asciidoctor-pdf dblatex libxml2-utils
 
       - name: qpid-dispatch cmake configure
         working-directory: ${{env.DispatchBuildDir}}

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to