diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d65be225d36f7d40d343edc7bf66fd53fb35cc73..319950dc9d2560cac1c222129ef45e2f95367fba 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."