From 33e1e54559c1236dd426e6c104eb3c0ec647d190 Mon Sep 17 00:00:00 2001 From: kiler398 Date: Thu, 24 Nov 2022 11:15:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0.gitlab-ci.yml=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2efce65..065b47a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ stages: # List of stages for jobs, and their order of execution - deploy build-job: # This job runs in the build stage, which runs first. - image: Maven:3.8.6-ibm-semeru-11-focal + image: maven:3.8.6-ibm-semeru-11-focal stage: build script: - echo "Compiling the code..." @@ -32,7 +32,7 @@ build-job: # This job runs in the build stage, which runs first. unit-test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. - image: Maven:3.8.6-ibm-semeru-11-focal + image: maven:3.8.6-ibm-semeru-11-focal script: - echo "Running unit tests... This will take about 60 seconds." - sleep 60