@@ -9,67 +9,3 @@ scalability and quality. It is based on various technologies among:
9
9
- apache HIVE
10
10
- apache SOLR
11
11
- PostgreSQL
12
-
13
-
14
- Building a release
15
- ------------------
16
-
17
- This process is semi-automated. Follow these steps:
18
-
19
- - Be sure to be on the branch `` dev ``
20
- - Be sure that every merge request are merged on the branch `` dev `` through gitlab or merge manually
21
- - Merge the branch `` dev `` on the branch `` master ``
22
- - It is mandatory to create the release from the branch `` master `` , so be on the branch `` master ``
23
- - Type this:
24
-
25
- ``` shell
26
- $ export MVN_GROUP_REPOSITORY=https://nexus.eds.aphp.fr/repository/nparis-mvn
27
- $ export MVN_RELEASE_REPOSITORY=https://nexus.eds.aphp.fr/repository/nparis-mvn-release
28
- $ export MVN_SNAPSHOT_REPOSITORY=https://nexus.eds.aphp.fr/repository/nparis-mvn-snapshot
29
- $ export NEXUS_USER=< NEXUS_USER>
30
- $ export NEXUS_PASSWORD=< NEXUS_PASSWORD>
31
- $ export CI_PROJECT_PATH=edsBigData/spark-etl
32
- $ export GIT_USER=< GIT_USER>
33
- $ export GIT_PASSWORD=< GIT_PASSWORD>
34
- $ ./build.sh --prepare-release
35
- The current version is: 1.0.5-SNAPSHOT
36
-
37
- Provide the release name
38
- 1.0.5
39
- Provide the snapshot name
40
- 1.0.6
41
- [...]
42
- $
43
- ```
44
-
45
- At this moment, you should see a pipeline related to the new release.
46
- - Now, you need to merge the branch `` master `` on the branch `` dev `` . So type this:
47
-
48
- ``` shell
49
- $ git branch
50
- [...]
51
- * master
52
- [...]
53
- $ git checkout dev
54
- Switched to branch ' dev'
55
- Your branch is up to date with ' origin/dev' .
56
- $ git merge master
57
- Updating a4d31db..dec4851
58
- Fast-forward
59
- pom.xml | 2 +-
60
- spark-csv/pom.xml | 4 ++--
61
- spark-dataframe/pom.xml | 4 ++--
62
- spark-hive/pom.xml | 4 ++--
63
- spark-meta/pom.xml | 4 ++--
64
- spark-postgres/pom.xml | 4 ++--
65
- spark-quality/pom.xml | 4 ++--
66
- spark-query/pom.xml | 4 ++--
67
- spark-sync/pom.xml | 4 ++--
68
- 9 files changed, 17 insertions(+), 17 deletions(-)
69
- $ git push
70
- Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
71
- To gitlab-rsareth:rsareth-aphp/data/spark-etl.git
72
- a4d31db..dec4851 dev -> dev
73
- ```
74
-
75
-
0 commit comments