Skip to content

Commit

Permalink
Merge branch 'prerel' into feat/default-sock-path
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmann committed Aug 26, 2024
2 parents 862366e + 13aa88f commit 2c35fef
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
25 changes: 25 additions & 0 deletions .gitlab-ci-scripts/install-extra-packages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash
case ${DISTRO} in
fedora)
yum -y clean all
yum -y install clibs-list-devel
;;
centos)
yum -y clean all
yum -y install clibs-list-devel cjson-devel
;;
almalinux)
yum -y clean all
dnf -y upgrade almalinux-release --nogpgcheck
yum -y install clibs-list-devel curl-devel systemd-rpm-macros webkit2gtk3-devel\
gstreamer1 gstreamer1-plugins-base
;;
rockylinux)
yum -y clean all
yum -y install cjson-devel clibs-list-devel curl-devel systemd-rpm-macros webkit2gtk3-devel\
gstreamer1 gstreamer1-plugins-base
;;
opensuse)
zypper -n install cJSON-devel systemd-rpm-macros webkit2gtk3-devel
;;
esac
7 changes: 3 additions & 4 deletions .gitlab-ci-scripts/local-before-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ echo "======== oidc-agent-local-before-script starting======="
export VERSION=`cat VERSION`
# clone the packages file of this repo:
# Try with VERSION
echo "Trying to use branch for packaging: ${PACKAGING_BRANCH}/v${VERSION}"
git clone -b ${PACKAGING_BRANCH}/v${VERSION} http://codebase.helmholtz.cloud/m-team/oidc/oidc-agent.git delme || {
echo "Falling back to ${PACKAGING_BRANCH}/latest"
git clone -b ${PACKAGING_BRANCH}/latest http://codebase.helmholtz.cloud/m-team/oidc/oidc-agent.git delme
echo "Trying to use branch for packaging: ${PACKAGING_BRANCH}/test-ellert-spec"
git clone -b ${PACKAGING_BRANCH}/test-ellert-spec http://codebase.helmholtz.cloud/m-team/oidc/oidc-agent.git delme || {
exit 10
}


Expand Down
5 changes: 4 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,7 @@ trigger-win-installer:
--upstream-pipeline-id ${TRIGGERED_PIPELINE_ID}
artifacts:
paths:
- "results/*"
- "results/*"



4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ CPPFLAGS += -fPIC
ifndef MAC_OS
ifndef ANY_MSYS
WEBKITGTK ?= webkit2gtk-4.0
WEBKITGTK41:= $(firstword $(wildcard /usr/include/webkitgtk-4.1))
ifneq (,$(WEBKITGTK41))
WEBKITGTK=webkit2gtk-4.1
endif
CPPFLAGS += $(shell pkg-config --cflags --libs gtk+-3.0 $(WEBKITGTK)) -lstdc++
endif
endif
Expand Down

0 comments on commit 2c35fef

Please sign in to comment.