Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libapache2-mod-auth-openidc-debian
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
Pavel Vondruška
libapache2-mod-auth-openidc-debian
Commits
c6d70404
Commit
c6d70404
authored
3 years ago
by
Pavel Vondruska
Browse files
Options
Downloads
Patches
Plain Diff
initial
parents
No related branches found
No related tags found
No related merge requests found
Pipeline
#1020
passed
3 years ago
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+7
-0
7 additions, 0 deletions
.gitlab-ci.yml
make.sh
+40
-0
40 additions, 0 deletions
make.sh
with
47 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
7
−
0
View file @
c6d70404
build:stretch
:
image
:
debian:stretch
script
:
-
./make.sh
artifacts
:
paths
:
-
build/*
This diff is collapsed.
Click to expand it.
make.sh
0 → 100755
+
40
−
0
View file @
c6d70404
#!/bin/bash
set
-x
# Nastaveni promennych, pokud je SINVERSION zakomentovana, pokusime se odhadnout nejnovejsi
export
DEBIAN_FRONTEND
=
noninteractive
# Nacteni promennych o bezicim systemu vcetne verzi
.
/etc/os-release
# Od Debian 11 Bullseye ma debian-security trochu jinou cestu, abychom mohli pouzit heredoc, rozskocime si pres funkci
function
get_debian_security
()
{
if
[
"
${
VERSION_ID
}
"
-lt
"11"
]
;
then
echo
"
${
VERSION_CODENAME
}
/updates"
;
else
echo
"
${
VERSION_CODENAME
}
-security"
;
fi
}
# Vygenerovani sources.list podle verze Debianu
cat
>
/etc/apt/sources.list
<<
EOSOURCES
deb http://ftp.zcu.cz/pub/linux/debian
${
VERSION_CODENAME
}
main contrib non-free
deb http://ftp.zcu.cz/pub/linux/debian
${
VERSION_CODENAME
}
-updates main contrib non-free
deb http://ftp.zcu.cz/pub/linux/debian-security
$(
get_debian_security
)
main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian
${
VERSION_CODENAME
}
main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian
${
VERSION_CODENAME
}
-updates main contrib non-free
deb-src http://ftp.zcu.cz/pub/linux/debian-security
$(
get_debian_security
)
main contrib non-free
EOSOURCES
# Instalace buildovacich veci a zavislosti
apt update
-qqq
apt
install
-yqqq
git devscripts build-essential
git clone https://salsa.debian.org/debian/libapache2-mod-auth-openidc
-b
stretch-backports
cd
libapache2-mod-auth-openidc
mk-build-deps
--install
--tool
=
'apt-get -o Debug::pkgProblemResolver=yes --yes'
debian/control
# Build balicku
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