mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
Disable GitLab FreeBSD build.
The FreeBSD build is no longer working, and I no longer have a Google Cloud account. I'm disabling it for the time being, until there's a better way to do this.
This commit is contained in:
parent
3355740d23
commit
255fbe01eb
243
.gitlab-ci.yml
243
.gitlab-ci.yml
@ -364,104 +364,104 @@ centos7 clang-5:
|
|||||||
- source /opt/rh/llvm-toolset-7/enable
|
- source /opt/rh/llvm-toolset-7/enable
|
||||||
- echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
- echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
||||||
|
|
||||||
.freebsd_deps: &freebsd_deps
|
# .freebsd_deps: &freebsd_deps
|
||||||
retry:
|
# retry:
|
||||||
max: 2
|
# max: 2
|
||||||
when:
|
# when:
|
||||||
- runner_system_failure
|
# - runner_system_failure
|
||||||
- stuck_or_timeout_failure
|
# - stuck_or_timeout_failure
|
||||||
- unknown_failure
|
# - unknown_failure
|
||||||
- api_failure
|
# - api_failure
|
||||||
tags:
|
# tags:
|
||||||
- freebsd12
|
# - freebsd12
|
||||||
before_script:
|
# before_script:
|
||||||
- echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
# - echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
||||||
- 'echo "COMPILER_PACKAGE: $COMPILER_PACKAGE"'
|
# - 'echo "COMPILER_PACKAGE: $COMPILER_PACKAGE"'
|
||||||
# Try up to 7 times until installation succeeds. It may be locked.
|
# # Try up to 7 times until installation succeeds. It may be locked.
|
||||||
- >
|
# - >
|
||||||
(
|
# (
|
||||||
flock -x -w 600 9 || exit 1;
|
# flock -x -w 600 9 || exit 1;
|
||||||
sudo pkg update;
|
# sudo pkg update;
|
||||||
sudo pkg install -y -q
|
# sudo pkg install -y -q
|
||||||
cairo
|
# cairo
|
||||||
cmake
|
# cmake
|
||||||
docbook-xsl
|
# docbook-xsl
|
||||||
docbook2X
|
# docbook2X
|
||||||
gettext-runtime
|
# gettext-runtime
|
||||||
imlib2
|
# imlib2
|
||||||
lcov
|
# lcov
|
||||||
libical
|
# libical
|
||||||
libiconv
|
# libiconv
|
||||||
libinotify
|
# libinotify
|
||||||
libircclient
|
# libircclient
|
||||||
libmicrohttpd
|
# libmicrohttpd
|
||||||
librsvg2
|
# librsvg2
|
||||||
libX11
|
# libX11
|
||||||
libXdamage
|
# libXdamage
|
||||||
libXext
|
# libXext
|
||||||
libXfixes
|
# libXfixes
|
||||||
libXft
|
# libXft
|
||||||
libXinerama
|
# libXinerama
|
||||||
libxslt
|
# libxslt
|
||||||
lua53
|
# lua53
|
||||||
mysql80-client
|
# mysql80-client
|
||||||
pkgconf
|
# pkgconf
|
||||||
xmms2
|
# xmms2
|
||||||
$COMPILER_PACKAGE
|
# $COMPILER_PACKAGE
|
||||||
) 9>/var/lock/pkg
|
# ) 9>/var/lock/pkg
|
||||||
|
|
||||||
.freebsd_build_script: &freebsd_build_script
|
# .freebsd_build_script: &freebsd_build_script
|
||||||
script:
|
# script:
|
||||||
- mkdir build
|
# - mkdir build
|
||||||
- cd build
|
# - cd build
|
||||||
- >
|
# - >
|
||||||
cmake
|
# cmake
|
||||||
-DCMAKE_REQUIRED_INCLUDES="/usr/include;/usr/local/include"
|
# -DCMAKE_REQUIRED_INCLUDES="/usr/include;/usr/local/include"
|
||||||
-DCMAKE_EXE_LINKER_FLAGS=$LINKER_FLAGS
|
# -DCMAKE_EXE_LINKER_FLAGS=$LINKER_FLAGS
|
||||||
-DMAINTAINER_MODE=ON
|
# -DMAINTAINER_MODE=ON
|
||||||
-DBUILD_MYSQL=ON
|
# -DBUILD_MYSQL=ON
|
||||||
-DBUILD_LUA_IMLIB2=ON
|
# -DBUILD_LUA_IMLIB2=ON
|
||||||
-DBUILD_LUA_RSVG=ON
|
# -DBUILD_LUA_RSVG=ON
|
||||||
-DBUILD_LUA_CAIRO=ON
|
# -DBUILD_LUA_CAIRO=ON
|
||||||
-DBUILD_XMMS2=ON
|
# -DBUILD_XMMS2=ON
|
||||||
-DBUILD_ICAL=ON
|
# -DBUILD_ICAL=ON
|
||||||
-DBUILD_IRC=ON
|
# -DBUILD_IRC=ON
|
||||||
-DBUILD_HTTP=ON
|
# -DBUILD_HTTP=ON
|
||||||
-DBUILD_ICONV=ON
|
# -DBUILD_ICONV=ON
|
||||||
-DBUILD_RSS=ON
|
# -DBUILD_RSS=ON
|
||||||
-DBUILD_IRC=ON
|
# -DBUILD_IRC=ON
|
||||||
..
|
# ..
|
||||||
- make -j4
|
# - make -j4
|
||||||
|
|
||||||
freebsd12 gcc-8:
|
# freebsd12 gcc-8:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
stage: build
|
# stage: build
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
CC: gcc
|
# CC: gcc
|
||||||
CXX: g++
|
# CXX: g++
|
||||||
COMPILER_PACKAGE: gcc
|
# COMPILER_PACKAGE: gcc
|
||||||
<<: *freebsd_build_script
|
# <<: *freebsd_build_script
|
||||||
|
|
||||||
freebsd12 clang-7:
|
# freebsd12 clang-7:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
stage: build
|
# stage: build
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
CC: clang70
|
# CC: clang70
|
||||||
CXX: clang++70
|
# CXX: clang++70
|
||||||
COMPILER_PACKAGE: llvm70
|
# COMPILER_PACKAGE: llvm70
|
||||||
<<: *freebsd_build_script
|
# <<: *freebsd_build_script
|
||||||
|
|
||||||
freebsd12 clang-8:
|
# freebsd12 clang-8:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
stage: build
|
# stage: build
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
CC: clang80
|
# CC: clang80
|
||||||
CXX: clang++80
|
# CXX: clang++80
|
||||||
COMPILER_PACKAGE: llvm80
|
# COMPILER_PACKAGE: llvm80
|
||||||
<<: *freebsd_build_script
|
# <<: *freebsd_build_script
|
||||||
|
|
||||||
.test_stages: &test_stages
|
.test_stages: &test_stages
|
||||||
retry:
|
retry:
|
||||||
@ -579,7 +579,6 @@ test ubuntu gcc-8:
|
|||||||
CC: gcc-8
|
CC: gcc-8
|
||||||
CXX: g++-8
|
CXX: g++-8
|
||||||
|
|
||||||
|
|
||||||
test fedora-29 gcc-8:
|
test fedora-29 gcc-8:
|
||||||
<<: *test_stages
|
<<: *test_stages
|
||||||
<<: *test_run
|
<<: *test_run
|
||||||
@ -655,35 +654,35 @@ test centos7 gcc-8:
|
|||||||
- source /opt/rh/devtoolset-8/enable
|
- source /opt/rh/devtoolset-8/enable
|
||||||
- echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
- echo $GCS_STORAGE_KEY > $SCCACHE_GCS_KEY_PATH
|
||||||
|
|
||||||
test freebsd12 clang-7:
|
# test freebsd12 clang-7:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
<<: *test_run
|
# <<: *test_run
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
COMPILER: clang-7
|
# COMPILER: clang-7
|
||||||
COMPILER_PACKAGE: llvm70
|
# COMPILER_PACKAGE: llvm70
|
||||||
CC: clang70
|
# CC: clang70
|
||||||
CXX: clang++70
|
# CXX: clang++70
|
||||||
|
|
||||||
test freebsd12 clang-8:
|
# test freebsd12 clang-8:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
<<: *test_run
|
# <<: *test_run
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
COMPILER: clang-8
|
# COMPILER: clang-8
|
||||||
COMPILER_PACKAGE: llvm80
|
# COMPILER_PACKAGE: llvm80
|
||||||
CC: clang80
|
# CC: clang80
|
||||||
CXX: clang++80
|
# CXX: clang++80
|
||||||
|
|
||||||
test freebsd12 gcc-8:
|
# test freebsd12 gcc-8:
|
||||||
<<: *freebsd_deps
|
# <<: *freebsd_deps
|
||||||
<<: *test_run
|
# <<: *test_run
|
||||||
variables:
|
# variables:
|
||||||
DISTRO: freebsd12
|
# DISTRO: freebsd12
|
||||||
COMPILER: gcc-8
|
# COMPILER: gcc-8
|
||||||
COMPILER_PACKAGE: gcc
|
# COMPILER_PACKAGE: gcc
|
||||||
CC: gcc
|
# CC: gcc
|
||||||
CXX: g++
|
# CXX: g++
|
||||||
|
|
||||||
check clang-tidy:
|
check clang-tidy:
|
||||||
<<: *test_stages
|
<<: *test_stages
|
||||||
|
Loading…
Reference in New Issue
Block a user