From b9c5c28c540d8c0793e7b57fbc04a8c7f07d3186 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Sun, 14 Mar 2021 14:36:11 +0200 Subject: [PATCH] actions: ci: Use single apt install call Reduces time for this step ~10% --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 624e5a5caf..ec9d88f440 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,9 @@ jobs: name: Install dependencies run: | sudo apt update - sudo apt-get install git cmake gcc g++ libboost1.67-all-dev python3-all-dev swig libpcre3-dev libxml2-dev - sudo apt-get install liboce-foundation-dev liboce-modeling-dev liboce-ocaf-dev liboce-visualization-dev liboce-ocaf-lite-dev + sudo apt-get install \ + git cmake gcc g++ libboost1.67-all-dev python3-all-dev swig libpcre3-dev libxml2-dev \ + liboce-foundation-dev liboce-modeling-dev liboce-ocaf-dev liboce-visualization-dev liboce-ocaf-lite-dev - name: ccache