mirror of
https://github.com/Telecominfraproject/wlan-cloud-workspace.git
synced 2025-10-30 18:27:56 +00:00
Compare commits
95 Commits
v1.0.0-rc2
...
v1.1.0-rc3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73727dca09 | ||
|
|
ad67765358 | ||
|
|
f029a2f9df | ||
|
|
720ce832ec | ||
|
|
df9e7102f6 | ||
|
|
9b343a7a3e | ||
|
|
123ee30123 | ||
|
|
957613d88d | ||
|
|
d1ad3c0a2e | ||
|
|
4103afffb7 | ||
|
|
d108f3cb4d | ||
|
|
cd88311d9d | ||
|
|
6ba012a9c4 | ||
|
|
4430fc9d82 | ||
|
|
29c26fcd3f | ||
|
|
8779ba17c9 | ||
|
|
34793f06d5 | ||
|
|
49eeb45392 | ||
|
|
89a00021ce | ||
|
|
89d6960a69 | ||
|
|
8b18bd7031 | ||
|
|
f61cb56bf4 | ||
|
|
50a4ab4d7d | ||
|
|
6c83a8eeda | ||
|
|
ccd99b96e0 | ||
|
|
21d8ad82a6 | ||
|
|
b78ba6b9f8 | ||
|
|
3ee088bd94 | ||
|
|
aa36f6ac86 | ||
|
|
cbb811587f | ||
|
|
baf67c8b6e | ||
|
|
49d85641d9 | ||
|
|
0ce42d6fa2 | ||
|
|
1ae5911d28 | ||
|
|
a21f8157e0 | ||
|
|
f59dfe4ae1 | ||
|
|
6b9dc5927b | ||
|
|
05bede7c95 | ||
|
|
d6bb878b04 | ||
|
|
aefbee5f25 | ||
|
|
09c975a35c | ||
|
|
d295fccf24 | ||
|
|
382fac0e7c | ||
|
|
fc2523f09f | ||
|
|
230fb9f825 | ||
|
|
02827cd29d | ||
|
|
8de25f9b2e | ||
|
|
1acd399ba3 | ||
|
|
4b8ee0103b | ||
|
|
857927621c | ||
|
|
f1321bd0ac | ||
|
|
50c9d40f55 | ||
|
|
6ad82d527e | ||
|
|
2349ce57da | ||
|
|
40e342ac57 | ||
|
|
33cac70b7e | ||
|
|
7e99a282cd | ||
|
|
fe7cb6edeb | ||
|
|
cf87fb592f | ||
|
|
77a2389dac | ||
|
|
7245c62351 | ||
|
|
090463bb52 | ||
|
|
c2d3e5fd3d | ||
|
|
183eadfc0a | ||
|
|
8074cd8eec | ||
|
|
1f3c7cdb4c | ||
|
|
3cb7ffeb7d | ||
|
|
5f6f8254fe | ||
|
|
4600c7ea39 | ||
|
|
f1980285fd | ||
|
|
c02e36a11a | ||
|
|
145cf47130 | ||
|
|
522dfa5978 | ||
|
|
fc34d6bb26 | ||
|
|
b097facb79 | ||
|
|
5e5bbf8a43 | ||
|
|
d461ba15e6 | ||
|
|
6b128230d7 | ||
|
|
9a872cbdfc | ||
|
|
ebae3b537a | ||
|
|
dad7486ce7 | ||
|
|
1d5bd3e3d8 | ||
|
|
61602bc5cd | ||
|
|
0761196671 | ||
|
|
1f93d2ef6d | ||
|
|
0bb6668e5e | ||
|
|
4ab979d1e9 | ||
|
|
3f22aad094 | ||
|
|
1f2736e458 | ||
|
|
cd50fe6d42 | ||
|
|
c8f7582d7d | ||
|
|
a38614d96b | ||
|
|
870ec8b9a9 | ||
|
|
06661dbf42 | ||
|
|
ab78022a86 |
26
.github/workflows/maven-build.yml
vendored
26
.github/workflows/maven-build.yml
vendored
@@ -2,7 +2,11 @@ name: Java Maven CI - TIP WLAN Cloud Master
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
- 'release/**'
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
schedule:
|
||||
# runs nightly build at 5AM
|
||||
@@ -37,6 +41,26 @@ jobs:
|
||||
password: ${{ secrets.MAVEN_REPO_PASSWORD }}
|
||||
- name: Configure maven settings.xml
|
||||
run: cp .github/workflows/maven_settings_template.xml /home/runner/.m2/settings.xml
|
||||
- name: Update version in pom.xml
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
run: |
|
||||
VERSION=$(echo "${{ github.ref }}" | sed -e 's/refs\/tags\/[v]//')
|
||||
mvn -B --file wlan-cloud-root/pom.xml versions:set -DnewVersion=$VERSION
|
||||
mvn -B --file wlan-cloud-root/pom.xml install # put new parent version into Maven cache
|
||||
mvn -B --file wlan-cloud-root/pom.xml versions:revert # need to revert so that child modules are able to find its parent
|
||||
mvn -B --file all-modules-build/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-opensync-controller/opensync-gateway-static-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-opensync-controller/opensync-gateway-cloud-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/all-cloud-and-opensync-gw-in-one-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/all-cloud-in-one-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/portal-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/prov-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/ssc-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/spc-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/port-forwarding-gateway-docker/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-services/schema-generator/pom.xml versions:update-parent -DparentVersion=[$VERSION]
|
||||
mvn -B --file wlan-cloud-root/pom.xml versions:set -DnewVersion=$VERSION
|
||||
|
||||
- name: Updating commit file
|
||||
run: |
|
||||
TIMESTAMP=$(date +'%Y-%m-%d')
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.telecominfraproject.wlan</groupId>
|
||||
<artifactId>tip-wlan-cloud-root-pom</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<relativePath>../wlan-cloud-root</relativePath>
|
||||
</parent>
|
||||
|
||||
@@ -22,7 +21,6 @@
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>../wlan-cloud-root</module>
|
||||
<module>../wlan-cloud-base/base-build</module>
|
||||
<module>../wlan-cloud-services/cloud-services-build</module>
|
||||
<module>../wlan-cloud-opensync-controller/opensync-gateway-build</module>
|
||||
|
||||
25
all-modules-release/make_release.sh
Normal file
25
all-modules-release/make_release.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "x$1" == "x" ]
|
||||
then
|
||||
echo Usage: make_release.sh new_version
|
||||
exit 1
|
||||
fi
|
||||
|
||||
new_version=$1
|
||||
|
||||
PREVIOUS_VERSION=$(grep "<version>" ../wlan-cloud-root/pom.xml |head -2|tail -1|cut -d '>' -f2|cut -d '<' -f 1)
|
||||
echo "Updating TIP pom.xml files from $PREVIOUS_VERSION to version $new_version "
|
||||
|
||||
# update versions on TIP modules using special all-modules-release
|
||||
mvn --batch-mode release:update-versions -DdevelopmentVersion="$new_version" -DautoVersionSubmodules=true
|
||||
|
||||
|
||||
# update version that are not automatically updated
|
||||
sed -i '' "s/<tip-wlan-cloud.release.version>$PREVIOUS_VERSION<\/tip-wlan-cloud.release.version>/<tip-wlan-cloud.release.version>$new_version<\/tip-wlan-cloud.release.version>/g" ../wlan-cloud-root/pom.xml
|
||||
|
||||
#update protobuff dependency under opensync-ext-interface
|
||||
sed -i '' "s/<version>$PREVIOUS_VERSION<\/version>/<version>$new_version<\/version>/g" ../wlan-cloud-opensync-controller/opensync-ext-interface/pom.xml
|
||||
|
||||
echo "Updated TIP pom.xml files to version $new_version"
|
||||
|
||||
40
all-modules-release/pom.xml
Normal file
40
all-modules-release/pom.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.telecominfraproject.wlan</groupId>
|
||||
<artifactId>tip-wlan-cloud-root-pom</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<relativePath>../wlan-cloud-root</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>tip-wlan-workspace-all-modules-release</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<description>Aggregation of all TIP modules - to release them in one shot.</description>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>full-build</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>full-build</name>
|
||||
</property>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>../all-modules-build</module>
|
||||
<module>../wlan-cloud-services/all-cloud-and-opensync-gw-in-one-docker</module>
|
||||
<module>../wlan-cloud-services/all-cloud-in-one-docker</module>
|
||||
<module>../wlan-cloud-services/all-cloud-in-one-docker-with-persistence</module>
|
||||
<module>../wlan-cloud-services/port-forwarding-gateway-docker</module>
|
||||
<module>../wlan-cloud-services/portal-docker</module>
|
||||
<module>../wlan-cloud-services/prov-docker</module>
|
||||
<module>../wlan-cloud-services/spc-docker</module>
|
||||
<module>../wlan-cloud-services/ssc-docker</module>
|
||||
<module>../wlan-cloud-opensync-controller/opensync-gateway-cloud-docker</module>
|
||||
<module>../wlan-cloud-opensync-controller/opensync-gateway-static-docker</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
||||
|
||||
Submodule wlan-cloud-base updated: 24149ad62e...b1cc93b9df
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Submodule wlan-cloud-opensync-controller updated: a66049a600...e173e02eae
Submodule wlan-cloud-root updated: 88001eb119...069b8886ab
Submodule wlan-cloud-services updated: f0ee2750a7...535df0041e
Reference in New Issue
Block a user