-
Notifications
You must be signed in to change notification settings - Fork 48
96 lines (93 loc) · 2.73 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: 'Testing'
on:
push:
branches:
- "**"
tags-ignore:
- "**"
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
services:
zookeeper:
image: zookeeper:3.9.1-jre-17
ports:
- 2181:2181
solr:
image: solr:9
ports:
- 8983:8983
env:
ZK_HOST: zookeeper:2181
options: -e cloud
mailhog:
image: mailhog/mailhog:v1.0.1
ports:
- 1025:1025
openldap:
image: docker.io/bitnami/openldap:2.6
ports:
- 1389:1389
- 1636:1636
env:
BITNAMI_DEBUG: true
LDAP_ROOT: dc=roda,dc=org
LDAP_SKIP_DEFAULT_TREE: yes
LDAP_ADMIN_USERNAME: admin
LDAP_ADMIN_PASSWORD: roda
LDAP_EXTRA_SCHEMAS: cosine,inetorgperson,nis,pbkdf2
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Set up Maven
uses: hb0730/maven-action@v1
with:
maven-version: 3.9.2
- name: Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Set up GO
uses: actions/setup-go@v5
with:
go-version: '^1.19.5'
check-latest: true
- name: Install siegfried
run: |
go install github.com/richardlehane/siegfried/cmd/sf@latest
sf -update
- name: Install clamdscan mock
run: |
sudo cp .github/workflows/bin/clamscan /usr/bin/clamscan
sudo cp .github/workflows/bin/clamscan /usr/bin/clamdscan
sudo chmod a+rx /usr/bin/clamscan /usr/bin/clamdscan
- name: Test
run:
mvn $MAVEN_CLI_OPTS -Dtestng.groups="travis" -Denforcer.skip=true clean org.jacoco:jacoco-maven-plugin:prepare-agent clean test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RODA_CORE_SOLR_TYPE: CLOUD
RODA_CORE_SOLR_CLOUD_URLS: localhost:2181
SIEGFRIED_MODE: standalone
LDAP_SERVER_URL: ldap://localhost
LDAP_SERVER_PORT: 1389
- name: Package
run:
mvn $MAVEN_CLI_OPTS -Dmaven.test.skip=true package
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RODA_CORE_SOLR_TYPE: CLOUD
RODA_CORE_SOLR_CLOUD_URLS: localhost:2181
SIEGFRIED_MODE: standalone
LDAP_SERVER_URL: ldap://localhost
LDAP_SERVER_PORT: 1389