From 55ea1d9c75a7bf24758364c1d9e322dcf785ba29 Mon Sep 17 00:00:00 2001 From: alered01 Date: Thu, 11 Aug 2022 17:14:53 +0100 Subject: [PATCH] Adding required packages for gitlab ci Jira: OSSDEVOPS-4189 Change-Id: I443c90ebfa342ed7bbbbf73b7dc7a44d31c12588 CustomizedGitHooks: yes --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d65be225..319950dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,8 @@ build-job:aarch64: # This job runs in the build stage, which runs first. - linux - aarch64 script: + - apt update + - apt install -y build-essential - echo "Compiling the code..." - make -j - echo "Compile complete." @@ -23,6 +25,8 @@ build-job:x86_64: # This job runs in parallel with build-job:aarch64 - linux - x86_64 script: + - apt update + - apt install -y build-essential nasm - echo "Compiling the code..." - make -j - echo "Compile complete." -- GitLab