forked from project-sunbird/sunbird-functional-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
40 lines (37 loc) · 1.33 KB
/
Jenkinsfile
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
pipeline {
environment {
sunbird_api_key = "${sunbird_api_keys}"
content_store_api_base_url = "http://11.2.4.19:8080/learning-service"
content_store_api_key = "${ekstep_api_keys}"
sunbird_cassandra_host = "10.10.4.4"
sunbird_cassandra_port = "9042"
sunbird_cassandra_username = "cassandra"
sunbird_cassandra_keyspace = "sunbird"
sunbird_sso_username = "shailesh-admin"
sunbird_sso_password = "${sunbird_sso_passwords}"
sunbird_sso_realm = "sunbird"
sunbird_sso_client_id = "admin-cli"
sunbird_es_host = "10.10.3.7"
sunbird_es_port = "9300"
sunbird_es_index = "searchindex"
sunbird_test_base_url = "https://dev.open-sunbird.org"
sunbird_sso_url="https://dev.open-sunbird.org/auth"
sunbird_username="[email protected]"
sunbird_default_channel="ft_test"
sunbird_test_email_address_1 = "[email protected]"
sunbird_test_email_address_2 = "[email protected]"
sunbird_content_id = "do_112501345261985792135"
}
agent { label "build-slave" }
stages {
stage("build") {
steps {
sh '''
cd sunbird_service_api_test
ls
mvn clean verify
'''
}
}
}
}