File tree Expand file tree Collapse file tree 4 files changed +21
-16
lines changed
actions/install-maven-parent-action Expand file tree Collapse file tree 4 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ runs:
2020 shell : bash
2121 run : |
2222 cd eclipse-platform-parent
23- mvn clean install -B -ntp -Dtycho.version=${{ inputs.tycho-version }}
23+ mvn clean install
2424 cd ..
2525 cd eclipse.platform.releng.prereqs.sdk
26- mvn clean install -B -ntp -Dtycho.version=${{ inputs.tycho-version }}
26+ mvn clean install
2727 - name : Remove eclipse.platform.releng.aggregator
2828 shell : bash
2929 run : ' rm -rf eclipse.platform.releng.aggregator'
Original file line number Diff line number Diff line change 3434
3535permissions : {} # all none
3636
37+ env :
38+ MAVEN_ARGS : >-
39+ --batch-mode --no-transfer-progress
40+ ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
41+
3742jobs :
3843 versions-check-and-increment :
3944 name : Check and increment service versions
5964 - name : Install Maven parent locally
6065 uses : eclipse-platform/eclipse.platform.releng.aggregator/.github/actions/install-maven-parent-action@master
6166 if : inputs.without-EF-infra
62- with :
63- tycho-version : 4.0.12
6467
6568 - name : Additional setup
6669 if : inputs.extra-setup-command
7679 command : >
7780 mvn verify ${{ inputs.extra-maven-args }} -DskipTests -Dcompare-version-with-baselines.skip=false
7881 org.eclipse.tycho:tycho-versions-plugin:bump-versions -Dtycho.bump-versions.increment=100
79- --threads 1C --fail-at-end --batch-mode --no-transfer-progress --show-version
80- ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
82+ --threads 1C --fail-at-end --show-version
8183
8284 - name : Commit version increments, if any
8385 run : |
9193
9294 # Read 'releaseNumberSDK' property as stream version
9395 pushd ${{ inputs.working-directory }}
94- mvn help:evaluate -Dexpression=releaseNumberSDK ${{ inputs.extra-maven-args }} --quiet '-Doutput=releaseNumberSDK-value.txt' \
95- ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
96+ mvn help:evaluate -Dexpression=releaseNumberSDK ${{ inputs.extra-maven-args }} --quiet '-Doutput=releaseNumberSDK-value.txt'
9697 streamVersion=$(<releaseNumberSDK-value.txt)
9798 rm -f releaseNumberSDK-value.txt
9899 popd
Original file line number Diff line number Diff line change 2626 required : false
2727 default : true
2828
29+ env :
30+ MAVEN_ARGS : >-
31+ --batch-mode --no-transfer-progress
32+ ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
33+
2934jobs :
3035 analyze :
3136 name : Analyze
@@ -86,14 +91,11 @@ jobs:
8691 - name : Install Maven parent locally
8792 uses : eclipse-platform/eclipse.platform.releng.aggregator/.github/actions/install-maven-parent-action@master
8893 if : inputs.without-EF-infra
89- with :
90- tycho-version : 4.0.12
9194
9295 - name : Build with Maven
9396 run : >-
9497 ${{ runner.os == 'Linux' && 'xvfb-run' || '' }}
95- mvn --batch-mode --no-transfer-progress --show-version --update-snapshots --errors
96- ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
98+ mvn --show-version --update-snapshots --errors
9799 -Dcompare-version-with-baselines.skip=true
98100 -Pbree-libs
99101 -DskipTests=true
Original file line number Diff line number Diff line change 2828
2929permissions : {}
3030
31+ env :
32+ MAVEN_ARGS : >-
33+ --batch-mode --no-transfer-progress
34+ ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
35+
3136jobs :
3237 event_file :
3338 name : " Upload Event File"
@@ -81,14 +86,11 @@ jobs:
8186 - name : Install Maven parent locally
8287 uses : eclipse-platform/eclipse.platform.releng.aggregator/.github/actions/install-maven-parent-action@master
8388 if : inputs.without-EF-infra
84- with :
85- tycho-version : 4.0.12
8689
8790 - name : Build with Maven
8891 run : >-
8992 ${{ runner.os == 'Linux' && 'xvfb-run' || '' }}
90- mvn --batch-mode --no-transfer-progress --show-version --update-snapshots --errors
91- ${{ inputs.without-EF-infra && '-Dtycho.version=4.0.12' || '' }}
93+ mvn --show-version --update-snapshots --errors
9294 -Dcompare-version-with-baselines.skip=false
9395 -Pbree-libs
9496 -Papi-check
You can’t perform that action at this time.
0 commit comments