From 2837ace7f4b441865fc6eb36ce805319949fb29c Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 18 Feb 2024 11:23:38 +0100 Subject: [PATCH] added comments to gitlab-ci --- .gitlab-ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6ed101d..f5533c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,14 +23,14 @@ variables: why2-chat-build: stage: build - image: rust:latest + image: rust:latest # Fixes cargo installation problems in ./configure.sh script: - - apt update - - apt install sudo lsb-release -y - - chmod +x configure.sh - - sudo ./configure.sh - - make install BYPASS_CHECK=true - - make build_chat + - apt update # Update repos + - apt install sudo lsb-release -y # Install needed stuff + - chmod +x configure.sh # Permissions + - sudo ./configure.sh # Preparation + - make install BYPASS_CHECK=true # Install WHY2 + - make build_chat # Build Chat artifacts: paths: - $CLIENT @@ -40,12 +40,12 @@ why2-core-test: stage: build image: rust:latest script: - - apt update - - apt install sudo lsb-release -y - - chmod +x configure.sh - - sudo ./configure.sh - - make install BYPASS_CHECK=true - - make test_core - - ./$CORE_OUTPUT - - $APP - - $VALGRIND $APP \ No newline at end of file + - apt update # Update repos + - apt install sudo lsb-release valgrind -y # Install needed stuff + - chmod +x configure.sh # Permissions + - sudo ./configure.sh # Preparation + - make install BYPASS_CHECK=true # Install WHY2 + - make test_core # Build WHY2 Test + - ./$CORE_OUTPUT # Test Lib + - $APP # Test App + - $VALGRIND $APP # Test Lib by Valgrind \ No newline at end of file