Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Icecast-Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Icecast-Server
Merge requests
!13
Draft: - include libigloo in ci
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: - include libigloo in ci
devel-stephan48-publish-bin-package
into
devel
Overview
0
Commits
5
Pipelines
5
Changes
1
Closed
Stephan Jauernick
requested to merge
devel-stephan48-publish-bin-package
into
devel
2 years ago
Overview
0
Commits
5
Pipelines
5
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 4
5e68b18e
2 years ago
version 3
74db1b20
2 years ago
version 2
ac9597ff
2 years ago
version 1
af3b66eb
2 years ago
devel (base)
and
version 2
latest version
0b2253ae
5 commits,
2 years ago
version 4
5e68b18e
4 commits,
2 years ago
version 3
74db1b20
3 commits,
2 years ago
version 2
ac9597ff
2 commits,
2 years ago
version 1
af3b66eb
1 commit,
2 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
17
−
3
Options
@@ -6,15 +6,16 @@ make_dist:
tags
:
-
docker
image
:
alpine:3.1
2
image
:
alpine:3.1
5
stage
:
build
before_script
:
-
set -xe
-
apk update
-
cat /etc/os*
-
apk add musl-dev git make gcc automake autoconf libtool
-
apk add curl-dev libogg-dev libvorbis-dev libxslt-dev libxml2-dev
-
apk add musl-dev git make gcc automake autoconf libtool
curl ca-certificates
-
apk add curl-dev libogg-dev libvorbis-dev libxslt-dev libxml2-dev
libc6-compat
# gzip required because busybox gzip does not understand best / zip for make dist
-
apk add gzip zip tar
# Required for tests
@@ -23,10 +24,23 @@ make_dist:
#- adduser -s /bin/sh -D -H icecast
script
:
-
set -xe
# yes i know the scripts will be merged... but for sanities sake
-
./autogen.sh
-
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
-
'
curl
-LO
--header
"JOB-TOKEN:
$CI_JOB_TOKEN"
"${CI_API_V4_URL}/projects/143/packages/generic/libigloo-bins/0.0.1-$CI_COMMIT_REF_NAME/libigloo-$CI_COMMIT_REF_NAME.tar.gz"'
-
tar -C / -xvzf libigloo-$CI_COMMIT_REF_NAME.tar.gz
-
ls -la /usr/local/lib
-
./configure || cat config.log
-
make dist
-
ls -la
-
make install DESTDIR=`pwd`/_install_base/
-
ls -la
-
ls -la _install_base/
-
cd _install_base/
-
tar -cvzf ../icecast-$CI_COMMIT_REF_NAME.tar.gz *
-
cd ..
-
ls -la
-
'
curl
--header
"JOB-TOKEN:
$CI_JOB_TOKEN"
--upload-file
libigloo-$CI_COMMIT_REF_NAME.tar.gz
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/icecast-bins/0.0.1-$CI_COMMIT_REF_NAME/icecast-$CI_COMMIT_REF_NAME.tar.gz"'
# Tests
#- su -c "./tests/admin-tests.sh" icecast
Loading