Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
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
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SteelT
SRB2
Commits
1886b9f9
Commit
1886b9f9
authored
1 year ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml file
Add more sections to the build log
parent
c17c5327
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+95
-83
95 additions, 83 deletions
.gitlab-ci.yml
with
95 additions
and
83 deletions
.gitlab-ci.yml
+
95
−
83
View file @
1886b9f9
stages
:
# List of stages for jobs, and their order of execution
-
build
.ccache_Scripts
:
&ccache
-
export CCACHE_BASEDIR="$PWD"
-
export CCACHE_DIR="$PWD/ccache"
-
export CCACHE_COMPILERCHECK=content
-
export CCACHE_STATSLOG="$PWD/ccache_statslog"
.aptcache_Scripts
:
&aptcache
-
export APT_CACHE_DIR=`pwd`/apt-cache
-
export DEBIAN_FRONTEND=noninteractive
export APT_CACHE_DIR=`pwd`/apt-cache
;
export DEBIAN_FRONTEND=noninteractive
;
default
:
image
:
debian:stable-slim
...
...
@@ -17,7 +11,6 @@ default:
.job_template
:
&job_build
# This job runs in the build stage, which runs first.
stage
:
build
variables
:
CCACHE_MAXSIZE
:
50M
GIT_STRATEGY
:
clone
GIT_CLONE_PATH
:
$CI_BUILDS_DIR/$CI_CONCURRENT_ID/$CI_PROJECT_PATH
cache
:
...
...
@@ -33,31 +26,56 @@ default:
-
apt-cache
unprotect
:
true
before_script
:
-
dpkg --add-architecture i386
-
dpkg --add-architecture amd64
-
dpkg --add-architecture arm64
-
*aptcache
-
touch /etc/apt/apt.conf.d/99build
-
echo Adding options to apt.conf':'
-
echo APT::Install-Recommends "false"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo quiet "2"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo APT::Get::Assume-Yes "true"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo Dir::Cache::Archives "$APT_CACHE_DIR"\; | tee --append /etc/apt/apt.conf.d/99build
-
apt-get update
-
mkdir --parents --verbose $APT_CACHE_DIR/partial/
-
echo -e "\e[0Ksection_start:`date +%s`:apt_pre[collapsed=true]\r\e[0Kinstalling pre packages"
-
apt-get install apt-utils
-
echo -e "\e[0Ksection_end:`date +%s`:apt_pre\r\e[0K"
-
echo -e "\e[0Ksection_start:`date +%s`:apt_common[collapsed=true]\r\e[0Kinstalling common packages"
-
apt-get install make git ccache
-
echo -e "\e[0Ksection_end:`date +%s`:apt_common\r\e[0K"
-
*ccache
-
-
echo -e "\e[0Ksection_start:`date +%s`:dpkg_aa[collapsed=true]\r\e[0KAdding architectures to dpkg"
-
dpkg --add-architecture i386
-
dpkg --add-architecture amd64
-
dpkg --add-architecture arm64
-
echo -e "\e[0Ksection_end:`date +%s`:dpkg_aa\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:ac_pre[collapsed=true]\r\e[0KSetting up APT cache"
-
*aptcache
-
echo -e "\e[0Ksection_end:`date +%s`:ac_pre\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_conf[collapsed=true]\r\e[0KSetting up APT conf"
-
touch /etc/apt/apt.conf.d/99build
-
echo Adding options to apt.conf':'
-
echo APT::Install-Recommends "false"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo quiet "1"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo APT::Get::Assume-Yes "true"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo Dir::Cache::Archives "$APT_CACHE_DIR"\; | tee --append /etc/apt/apt.conf.d/99build
-
echo -e "\e[0Ksection_end:`date +%s`:apt_conf\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_update[collapsed=true]\r\e[0KUpdating APT listing"
-
apt-get update
-
echo -e "\e[0Ksection_end:`date +%s`:apt_update\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_cache[collapsed=true]\r\e[0KMaking APT cache directory"
-
mkdir --parents --verbose $APT_CACHE_DIR/partial/
-
echo -e "\e[0Ksection_end:`date +%s`:apt_cache\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_pre[collapsed=true]\r\e[0KInstalling pre packages"
-
apt-get install apt-utils
-
echo -e "\e[0Ksection_end:`date +%s`:apt_pre\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_common[collapsed=true]\r\e[0KInstalling common packages"
-
apt-get install make git ccache
-
echo -e "\e[0Ksection_end:`date +%s`:apt_common\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:ccache_config[collapsed=true]\r\e[0KSetting up ccache config"
-
echo Adding ccache configution option
-
touch ~/.ccache/ccache.conf
-
echo base_dir = "$PWD" | tee ~/.ccache/ccache.conf
-
echo cache_dir = "$PWD/ccache" | tee ~/.ccache/ccache.conf
-
echo compiler_check = content | tee ~/.ccache/ccache.conf
-
echo stats_log = "$PWD/ccache_statslog" | tee ~/.ccache/ccache.conf
-
echo max_size = 50M | tee ~/.ccache/ccache.conf
-
echo -e "\e[0Ksection_end:`date +%s`:ccache_config\r\e[0K"
-
ccache --zero-stats ||
true
-
ccache --show-stats ||
true
after_script
:
-
*aptcache
-
apt-get autoclean
-
*ccache
-
ccache --show-stats
-
ccache --show-log-stats ||
true
...
...
@@ -71,16 +89,15 @@ build-testing:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-testing"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev libpng-dev libcurl4-openssl-dev libgme-dev libopenmpt-dev
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 NONX86=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 NONX86=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev libpng-dev libcurl4-openssl-dev libgme-dev libopenmpt-dev
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 NONX86=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 NONX86=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
build-i686-w64-mingw32
:
<<
:
*job_build
...
...
@@ -90,13 +107,12 @@ build-i686-w64-mingw32:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win32"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-mingw-w64-i686-win32
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW=1 PREFIX=i686-w64-mingw32 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW=1 PREFIX=i686-w64-mingw32
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-mingw-w64-i686-win32
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW=1 PREFIX=i686-w64-mingw32 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW=1 PREFIX=i686-w64-mingw32
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
build-x86_64-linux-gnu
:
<<
:
*job_build
...
...
@@ -106,20 +122,19 @@ build-x86_64-linux-gnu:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-x86-64"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-x86-64-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:amd64 libpng-dev:amd64 libcurl4-openssl-dev:amd64 libgme-dev:amd64 libopenmpt-dev:amd64
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-x86-64-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:amd64 libpng-dev:amd64 libcurl4-openssl-dev:amd64 libgme-dev:amd64 libopenmpt-dev:amd64
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
export CC=x86_64-linux-gnu-gcc
-
export OBJCOPY=x86_64-linux-gnu-objcopy
-
export OBJDUMP=x86_64-linux-gnu-objdump
-
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
build-i686-linux-gnu
:
<<
:
*job_build
...
...
@@ -129,20 +144,19 @@ build-i686-linux-gnu:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-i686"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-i686-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:i386 libpng-dev:i386 libcurl4-openssl-dev:i386 libgme-dev:i386 libopenmpt-dev:i386
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-i686-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:i386 libpng-dev:i386 libcurl4-openssl-dev:i386 libgme-dev:i386 libopenmpt-dev:i386
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
export CC=i686-linux-gnu-gcc
-
export OBJCOPY=i686-linux-gnu-objcopy
-
export OBJDUMP=i686-linux-gnu-objdump
-
export PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
build-aarch64-linux-gnu
:
<<
:
*job_build
...
...
@@ -152,20 +166,19 @@ build-aarch64-linux-gnu:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-aarch64"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-aarch64-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:arm64 libpng-dev:arm64 libcurl4-openssl-dev:arm64 libgme-dev:arm64 libopenmpt-dev:arm64
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-aarch64-linux-gnu || apt-get install gcc
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_development[collapsed=true]\r\e[0Kinstalling development packages"
-
apt-get install libsdl2-mixer-dev:arm64 libpng-dev:arm64 libcurl4-openssl-dev:arm64 libgme-dev:arm64 libopenmpt-dev:arm64
-
echo -e "\e[0Ksection_end:`date +%s`:apt_development\r\e[0K"
-
export CC=aarch64-linux-gnu-gcc
-
export OBJCOPY=aarch64-linux-gnu-objcopy
-
export OBJDUMP=aarch64-linux-gnu-objdump
-
export PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 NONX86=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 NONX86=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 NONX86=1 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 LINUX64=1 NONX86=1
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
build-x86_64-w64-mingw32
:
<<
:
*job_build
...
...
@@ -175,10 +188,9 @@ build-x86_64-w64-mingw32:
name
:
"
$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win64"
script
:
-
*aptcache
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-mingw-w64-x86-64-win32
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
*ccache
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
-
apt-get install gcc-mingw-w64-x86-64-win32
-
echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
-
-
echo -e "\e[0Ksection_start:`date +%s`:make\r\e[0KCompiling SRB2"
-
make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32 || make --directory=src --keep-going CCACHE=1 ERRORMODE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32
-
echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K"
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