Skip to content
Snippets Groups Projects

Tut01 test exercise

Closed Yana Kernerman requested to merge s92604/devops-webservice:tut01 into main
1 file
+ 14
15
Compare changes
  • Side-by-side
  • Inline
+ 14
15
@@ -5,48 +5,47 @@ stages:
- build
- publish
# Main job to test the application
job_test_the_code:
stage: test
image: registry.hub.docker.com/library/golang:1.21 # Official Docker image provided by Go
image: registry.hub.docker.com/library/golang:1.21
script:
- go get -t ./... # Installs dependencies, including those for testing
- go test -race -v ./... # Run tests with race detection enabled
- go get -t ./...
- go test -race -v ./...
job_build_artifact:
stage: build
rules: # Conditions under which this job should run
- if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main" # Run this job only for merge request event into main
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main"
when: always
image: registry.hub.docker.com/library/golang:1.21
script:
- go get -t ./... # Installs dependencies
- go build -o ./artifact.bin ./*.go # Builds the Go application and outputs a binary named artifact.bin
- go get -t ./...
- go build -o ./artifact.bin ./*.go
artifacts:
paths: # Specifies the paths to the files that are to be saved as artifacts after the job has been completed.
paths:
- ./artifact.bin
expire_in: 1 week
job_publish_artifact:
stage: publish
rules: # Conditions under which this job should run
- if: $CI_PIPELINE_SOURCE == "push" && $CI_MERGE_COMMIT_REF_NAME =~ /main/ # Run this job only for merge request event into main.
rules:
- if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME =~ /main/
when: always
image: curlimages/curl:latest # Custom image with curl
image: curlimages/curl:latest
tags:
- docker-privileged
dependencies:
- job_build_artifact
script:
- echo "Publishing artifact..."
- ls -al # List files to confirm artifact.bin exists
- pwd # Print the current directory
- ls -al
- pwd
- echo "${CI_JOB_TOKEN}"
- echo " ${CI_API_V4_URL}"
- echo "${CI_PROJECT_ID}"
- echo "${CI_COMMIT_REF_NAME}"
- echo "${version}"
- curl --version # Verify curl installation
- curl --version
- |
curl \
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
Loading