Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webservice
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DevOps (Lecture FB VI)
webservice
Merge requests
!24
Tut01 test exercise
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Tut01 test exercise
s92604/devops-webservice:tut01
into
main
Overview
0
Commits
31
Pipelines
1
Changes
1
Closed
Yana Kernerman
requested to merge
s92604/devops-webservice:tut01
into
main
5 months ago
Overview
0
Commits
31
Pipelines
1
Changes
1
Expand
Merge request reports
Viewing commit
5e830c0c
Prev
Next
Show latest version
1 file
+
31
−
31
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5e830c0c
run only tests
· 5e830c0c
Yana Kernerman
authored
7 months ago
.gitlab-ci.yml
+
31
−
31
Options
@@ -18,35 +18,35 @@ job_test_the_code:
-
go get -t ./...
# Installs dependencies, including those for testing
-
go test -race -v ./...
# Run tests with race detection enabled
job_build_artifact
:
stage
:
build
rules
:
# Conditions under which this job should run
-
if
:
$CI_COMMIT_REF_NAME =~ /^.*$/
# Run this job for any branch or merge request event.
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
artifacts
:
paths
:
# Specifies the paths to the files that are to be saved as artifacts after the job has been completed.
-
./artifact.bin
expire_in
:
1 week
job_publish_artifact
:
stage
:
publish
rules
:
# Conditions under which this job should run
-
if
:
$CI_COMMIT_REF_NAME =~ /^.*$/
# Run this job for any branch or merge request event.
when
:
always
image
:
curlimages/curl:latest
# Custom image with curl
tags
:
-
docker-privileged
dependencies
:
-
job_build_artifact
script
:
-
echo "Publishing artifact..."
-
|
curl \
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--upload-file ./artifact.bin \
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/artifacts/${version}/webservice"
#
job_build_artifact:
#
stage: build
#
rules: # Conditions under which this job should run
#
- if: $CI_COMMIT_REF_NAME =~ /^.*$/ # Run this job for any branch or merge request event.
#
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
#
artifacts:
#
paths: # Specifies the paths to the files that are to be saved as artifacts after the job has been completed.
#
- ./artifact.bin
#
expire_in: 1 week
#
#
job_publish_artifact:
#
stage: publish
#
rules: # Conditions under which this job should run
#
- if: $CI_COMMIT_REF_NAME =~ /^.*$/ # Run this job for any branch or merge request event.
#
when: always
#
image: curlimages/curl:latest # Custom image with curl
#
tags:
#
- docker-privileged
#
dependencies:
#
- job_build_artifact
#
script:
#
- echo "Publishing artifact..."
#
- |
#
curl \
#
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
#
--upload-file ./artifact.bin \
#
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/artifacts/${version}/webservice"
Loading