2023-10-10 23:40:41 +00:00
|
|
|
stages: # List of stages for jobs, and their order of execution
|
|
|
|
- build
|
|
|
|
|
2023-10-12 12:55:10 +00:00
|
|
|
.aptcache_Scripts: &aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
export APT_CACHE_DIR=`pwd`/apt-cache;
|
|
|
|
export DEBIAN_FRONTEND=noninteractive;
|
2023-10-12 04:22:15 +00:00
|
|
|
|
2023-10-13 16:13:31 +00:00
|
|
|
default:
|
2023-10-11 05:10:23 +00:00
|
|
|
image: debian:stable-slim
|
2023-10-13 16:13:31 +00:00
|
|
|
|
|
|
|
.job_template: &job_build # This job runs in the build stage, which runs first.
|
2023-10-14 00:10:34 +00:00
|
|
|
stage: build
|
2023-10-11 01:10:02 +00:00
|
|
|
variables:
|
2023-10-11 04:11:56 +00:00
|
|
|
GIT_STRATEGY: clone
|
|
|
|
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_CONCURRENT_ID/$CI_PROJECT_PATH
|
2023-10-11 00:40:49 +00:00
|
|
|
cache:
|
2023-10-11 03:03:37 +00:00
|
|
|
- key: ccache-$CI_PROJECT_PATH_SLUG-$CI_JOB_NAME_SLUG
|
2023-10-11 02:08:04 +00:00
|
|
|
fallback_keys:
|
2023-10-11 03:03:37 +00:00
|
|
|
- cache-$CI_PROJECT_PATH_SLUG-$CI_DEFAULT_BRANCH
|
|
|
|
- cache-$CI_PROJECT_PATH_SLUG-default
|
2023-10-11 00:40:49 +00:00
|
|
|
paths:
|
2023-10-11 02:08:04 +00:00
|
|
|
- ccache
|
2023-10-14 02:11:52 +00:00
|
|
|
- ccache_statslog
|
2023-10-12 01:06:00 +00:00
|
|
|
- key: apt-$CI_JOB_IMAGE
|
2023-10-11 04:25:05 +00:00
|
|
|
paths:
|
2023-10-11 05:03:19 +00:00
|
|
|
- apt-cache
|
2023-10-12 01:21:23 +00:00
|
|
|
unprotect: true
|
2023-10-11 02:08:04 +00:00
|
|
|
before_script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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
|
2023-10-14 15:05:50 +00:00
|
|
|
- echo base_dir = $PWD | tee --append ~/.ccache/ccache.conf
|
|
|
|
- echo cache_dir = $PWD/ccache | tee --append ~/.ccache/ccache.conf
|
|
|
|
- echo compiler_check = content | tee --append ~/.ccache/ccache.conf
|
|
|
|
- echo stats_log = $PWD/ccache_statslog | tee --append ~/.ccache/ccache.conf
|
|
|
|
- echo max_size = 50M | tee --append ~/.ccache/ccache.conf
|
2023-10-14 14:18:23 +00:00
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:ccache_config\r\e[0K"
|
|
|
|
|
2023-10-11 02:08:04 +00:00
|
|
|
- ccache --zero-stats || true
|
|
|
|
- ccache --show-stats || true
|
|
|
|
after_script:
|
2023-10-14 15:05:50 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_clean[collapsed=true]\r\e[0KCleaning of unneeded APT packages"
|
|
|
|
- *aptcache
|
|
|
|
- apt-get autoclean
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_clean\r\e[0K"
|
|
|
|
|
2023-10-11 02:08:04 +00:00
|
|
|
- ccache --show-stats
|
2023-10-14 01:37:05 +00:00
|
|
|
- ccache --show-log-stats || true
|
2023-10-12 04:12:15 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
build-testing:
|
2023-10-12 12:55:10 +00:00
|
|
|
<<: *job_build
|
2023-10-13 23:46:44 +00:00
|
|
|
image: debian:testing-slim
|
|
|
|
allow_failure: true
|
2023-10-12 12:55:10 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- "bin/lsdl2srb2*"
|
2023-10-13 23:46:44 +00:00
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-testing"
|
2023-10-12 12:55:10 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-12 12:55:10 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
build-i686-w64-mingw32:
|
2023-10-12 16:17:10 +00:00
|
|
|
<<: *job_build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2023-10-13 23:46:44 +00:00
|
|
|
- "bin/srb2win.exe*"
|
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win32"
|
2023-10-12 16:17:10 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc-mingw-w64-i686-win32
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-12 16:17:10 +00:00
|
|
|
|
2023-10-12 04:12:15 +00:00
|
|
|
build-x86_64-linux-gnu:
|
|
|
|
<<: *job_build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- "bin/lsdl2srb2*"
|
2023-10-12 05:04:02 +00:00
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-x86-64"
|
2023-10-10 23:40:41 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc-x86-64-linux-gnu || apt-get install gcc
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-12 18:01:44 +00:00
|
|
|
- export CC=x86_64-linux-gnu-gcc
|
|
|
|
- export OBJCOPY=x86_64-linux-gnu-objcopy
|
|
|
|
- export OBJDUMP=x86_64-linux-gnu-objdump
|
2023-10-12 13:11:16 +00:00
|
|
|
- export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-10 23:40:41 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
build-i686-linux-gnu:
|
2023-10-12 04:12:15 +00:00
|
|
|
<<: *job_build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2023-10-13 23:46:44 +00:00
|
|
|
- "bin/lsdl2srb2*"
|
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-i686"
|
2023-10-12 04:12:15 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc-i686-linux-gnu || apt-get install gcc
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
- 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
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-10 23:40:41 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
build-aarch64-linux-gnu:
|
2023-10-12 04:12:15 +00:00
|
|
|
<<: *job_build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2023-10-13 23:46:44 +00:00
|
|
|
- "bin/lsdl2srb2*"
|
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-aarch64"
|
2023-10-12 04:12:15 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc-aarch64-linux-gnu || apt-get install gcc
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
- 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
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|
2023-10-13 16:13:31 +00:00
|
|
|
|
2023-10-13 23:46:44 +00:00
|
|
|
build-x86_64-w64-mingw32:
|
2023-10-13 16:13:31 +00:00
|
|
|
<<: *job_build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2023-10-13 23:46:44 +00:00
|
|
|
- "bin/srb2win64.exe*"
|
|
|
|
name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win64"
|
2023-10-13 16:13:31 +00:00
|
|
|
script:
|
2023-10-14 14:18:23 +00:00
|
|
|
- - echo -e "\e[0Ksection_start:`date +%s`:apt_toolchain[collapsed=true]\r\e[0Kinstalling toolchain packages"
|
2023-10-14 15:05:50 +00:00
|
|
|
- *aptcache
|
2023-10-14 14:18:23 +00:00
|
|
|
- apt-get install gcc-mingw-w64-x86-64-win32
|
|
|
|
- echo -e "\e[0Ksection_end:`date +%s`:apt_toolchain\r\e[0K"
|
2023-10-14 15:05:50 +00:00
|
|
|
|
2023-10-14 14:18:23 +00:00
|
|
|
- - 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"
|