Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SEE Interface
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Research Labs
NEMO Project
NEMO Kernel
Secure Execution Environment
SEE Interface
Commits
07b6f2ef
Verified
Commit
07b6f2ef
authored
2 months ago
by
Martin Kröning
Browse files
Options
Downloads
Patches
Plain Diff
ci: enable buildkit, autodevops
parent
4ac4c8aa
Branches
main
No related tags found
No related merge requests found
Pipeline
#71768
failed
2 months ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+17
-4
17 additions, 4 deletions
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
with
18 additions
and
5 deletions
.gitlab-ci.yml
+
17
−
4
View file @
07b6f2ef
...
...
@@ -2,21 +2,34 @@
#
# SPDX-License-Identifier: MIT OR Apache-2.0
include
:
-
project
:
'
eclipsefdn/it/releng/gitlab-runner-service/gitlab-ci-templates'
file
:
'
jobs/buildkit.gitlab-ci.yml'
-
project
:
'
eclipsefdn/it/releng/gitlab-runner-service/gitlab-ci-templates'
file
:
'
pipeline-autodevops.gitlab-ci.yml'
stages
:
-
check
-
build
-
test
variables
:
CI_REGISTRY_IMAGE
:
nemometaos/see-interface
buildkit
:
extends
:
.buildkit
format
:
stage
:
check
stage
:
test
image
:
golangci/golangci-lint:v1.61-alpine
script
:
golangci-lint run -v --timeout=30m --no-config --disable-all --enable=gci --enable=gofumpt
lint
:
stage
:
check
stage
:
test
image
:
golangci/golangci-lint:v1.61-alpine
script
:
golangci-lint run -v --timeout=30m --no-config --enable=goconst --enable=gocyclo --enable=gosec --enable=lll --enable=musttag --enable=unconvert
build
:
stage
:
check
stage
:
test
image
:
golang:alpine
script
:
-
mkdir -p dist
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
07b6f2ef
...
...
@@ -11,7 +11,7 @@ COPY --link go.mod go.sum ./
RUN
go mod download
&&
go mod verify
COPY
--link . ./
RUN
CGO_ENABLED
=
0
GOOS
=
linux go build
-v
-o
dist ./cmd/see-interface
RUN
CGO_ENABLED
=
0
GOOS
=
linux go build
-v
-o
dist
/
./cmd/see-interface
FROM
scratch
COPY
--from=builder --link /usr/src/see-interface/dist/see-interface /usr/local/bin/see-interface
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment