Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
64ef925a
Commit
64ef925a
authored
1 year ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
lcs128: reverted postgres as a gitlab ci service
parent
0da47117
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+0
-5
0 additions, 5 deletions
.gitlab-ci.yml
Docker/lofar-ci/Dockerfile_ci_scu
+7
-0
7 additions, 0 deletions
Docker/lofar-ci/Dockerfile_ci_scu
with
7 additions
and
5 deletions
.gitlab-ci.yml
+
0
−
5
View file @
64ef925a
...
...
@@ -445,7 +445,6 @@ unit_test_SCU:
interruptible
:
true
services
:
-
rabbitmq:latest
-
postgres:11.7
variables
:
RABBITMQ_DEFAULT_USER
:
guest
RABBITMQ_DEFAULT_PASS
:
guest
...
...
@@ -545,7 +544,6 @@ integration_test_SCU:
image
:
${REGISTRY_PATH}/ci_scu:$CI_COMMIT_SHORT_SHA
services
:
-
rabbitmq:latest
-
postgres:11.7
rules
:
-
if
:
'
$CI_COMMIT_BRANCH
!~
/Front-End-Only/'
variables
:
...
...
@@ -580,7 +578,6 @@ integration_test_LTAIngest:
interruptible
:
true
services
:
-
rabbitmq:latest
-
postgres:11.7
variables
:
RABBITMQ_DEFAULT_USER
:
guest
RABBITMQ_DEFAULT_PASS
:
guest
...
...
@@ -600,7 +597,6 @@ unit_and_integration_and_regression_test_TMSS:
image
:
${REGISTRY_PATH}/ci_tmss:$CI_COMMIT_SHORT_SHA
services
:
-
rabbitmq:latest
-
postgres:11.7
variables
:
RABBITMQ_DEFAULT_USER
:
guest
RABBITMQ_DEFAULT_PASS
:
guest
...
...
@@ -650,7 +646,6 @@ regression_test_SCU:
-
if
:
'
$CI_COMMIT_BRANCH
!~
/Front-End-Only/'
services
:
-
rabbitmq:latest
-
postgres:11.7
variables
:
RABBITMQ_DEFAULT_USER
:
guest
RABBITMQ_DEFAULT_PASS
:
guest
...
...
This diff is collapsed.
Click to expand it.
Docker/lofar-ci/Dockerfile_ci_scu
+
7
−
0
View file @
64ef925a
...
...
@@ -9,6 +9,13 @@ FROM ci_base:$BASE_VERSION
RUN echo "Installing packages for SAS..." && \
yum install -y log4cplus log4cplus-devel python3 python3-libs python3-devel boost readline-devel boost-devel binutils-devel boost-python36 boost-python36-devel gettext which openldap-devel git java-11-openjdk python-twisted-core graphviz libaio
# see https://www.postgresql.org/download/linux/redhat/ on how to install postgresql-server >= 11 on centos7
RUN yum erase -y postgresql postgresql-server postgresql-devel && \
yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm && \
yum install -y postgresql12-server
ENV PATH /usr/pgsql-12/bin:$PATH
ENV LD_LIBRARY_PATH /usr/pgsql-12/lib:$LD_LIBRARY_PATH
# Oracle decided in all its wisdom to not make use of rpm/deb
# So, we're forced to download the Oracle client packages, and configure the paths
RUN mkdir -p /opt/oracle && \
...
...
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