-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitlab-ci.yml
55 lines (46 loc) · 1.41 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Continuous integration tests for the ukf-meta repository.
#
#
# Default image for all steps is Amazon Corretto 17, which is based
# on Amazon Linux (a variety of yum-based Linux derived from RHEL 7).
#
image: "amazoncorretto:17"
stages:
- test
perform-test:
stage: test
script:
#
# Install the tools we need that are not provided by the base image.
#
- yum -y --quiet install ant git libxslt
#
# Create work directories under the current one.
#
- mkdir -p work/build work/temp
#
# Fetch full UK federation inventory.
#
# The clone is made with a depth of 1 because we don't need any history.
#
- git clone --depth=1 https://gitlab-ci-token:$CI_JOB_TOKEN@$CI_SERVER_HOST/ukf/ukf-data.git work/ukf-data
#
# Thin UK federation inventory: retain 100 random entities.
#
- find work/ukf-data/entities -type f -name uk0\*.xml | sort -R | tail -n +101 | xargs rm
#
# Acquire a copy of the eduGAIN aggregate.
#
- ant -Denv=ci-download flow.edugain.download
- ls -lh work/temp
#
# Thin the eduGAIN aggregate into another file containing just 1% of the original
# entities.
#
- xsltproc -o work/temp/edugain-thin.xml utilities/thin_aggregate.xsl work/temp/edugain-download.xml
- ls -lh work/temp
#
# Run the full generate pipeline on the thinned input data.
#
- ant -Denv=ci-thin flow.aggregates.generate