Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pakiti-client-debian11
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
702
Security
pakiti-client-debian11
Commits
7aebad8f
Verified
Commit
7aebad8f
authored
Oct 6, 2023
by
Jakub Havrila
Browse files
Options
Downloads
Patches
Plain Diff
Initial CI and make
parents
No related branches found
No related tags found
No related merge requests found
Pipeline
#5282
failed
Oct 6, 2023
Stage: build
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+30
-0
30 additions, 0 deletions
.gitlab-ci.yml
make.sh
+25
-0
25 additions, 0 deletions
make.sh
with
55 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
30
−
0
View file @
7aebad8f
image
:
debian:bullseye
# Is performed before the scripts in the stages step
before_script
:
-
source /etc/profile
variables
:
DEBEMAIL
:
"
Jakub
Havrila
<havrila@cesnet.cz>"
# Defines stages which are to be executed
stages
:
-
build
# Stage "build"
run-build
:
stage
:
build
script
:
-
./make.sh
# This stage is only executed if commited to master
only
:
-
master
# The files which are to be made available in GitLab
artifacts
:
paths
:
-
build/*
This diff is collapsed.
Click to expand it.
make.sh
0 → 100644
+
25
−
0
View file @
7aebad8f
#!/bin/bash -x
cat
>
/etc/apt/sources.list
<<
EOSOURCES
deb http://ftp.zcu.cz/pub/linux/debian bullseye main contrib non-free
deb http://ftp.zcu.cz/pub/linux/debian bullseye-updates main contrib non-free
deb http://ftp.zcu.cz/pub/linux/debian-security bullseye-security main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian bullseye main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian bullseye-updates main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian-security bullseye-security main contrib non-free
EOSOURCES
apt update
-qqq
apt
install
git ca-certificates build-essential debhelper automake autoconf libtool pkg-config
--no-install-recommends
-qqq
-y
git clone https://github.com/CESNET/pakiti-client
cd
pakiti-client
dpkg-buildpackage
-uc
-us
-b
cd
..
mkdir
build
mv
*
.deb build/
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