File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ jobs:
43
43
- name : Build m2e-core
44
44
uses : coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
45
45
with :
46
- run : mvn clean verify -Pits -Dtycho.p2.baselineMode=failCommon --batch-mode
46
+ run : mvn clean verify --batch-mode - Pits -Dtycho.p2.baselineMode=failCommon -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true
47
47
- name : Upload Test Results
48
48
uses : actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
49
49
with :
50
50
name : test-results-${{ matrix.os }}
51
- if-no-files-found : error
51
+ if-no-files-found : warn
52
52
path : |
53
53
${{ github.workspace }}/**/target/surefire-reports/*.xml
54
54
event_file :
Original file line number Diff line number Diff line change 3
3
<extension >
4
4
<groupId >org.eclipse.tycho</groupId >
5
5
<artifactId >tycho-build</artifactId >
6
- <version >4.0.4 </version >
6
+ <version >${tycho-version} </version >
7
7
</extension >
8
8
</extensions >
Original file line number Diff line number Diff line change 2
2
--errors
3
3
--update-snapshots
4
4
--no-transfer-progress
5
- -Dmaven.test.error.ignore=true
6
- -Dmaven.test.failure.ignore=true
7
- -Dtycho.target.pomDependencies=consider
5
+ --fail-at-end
6
+ -Dtycho.localArtifacts=ignore
7
+ -Dtycho.target.pomDependencies=consider
8
+ -Dtycho-version=4.0.4
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pipeline {
42
42
withCredentials([string(credentialsId : ' gpg-passphrase' , variable : ' KEYRING_PASSPHRASE' )]) {
43
43
xvnc(useXauthority : true ) {
44
44
sh '''
45
- mavenArgs="clean verify -Dtycho.p2.baselineMode=failCommon --batch-mode "
45
+ mavenArgs="clean verify --batch-mode -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true - Dtycho.p2.baselineMode=failCommon"
46
46
if [[ ${BRANCH_NAME} == master ]] || [[ ${BRANCH_NAME} =~ m2e-[0-9]+\\ .[0-9]+\\ .x ]]; then
47
47
mvn ${mavenArgs} -Peclipse-sign,its -Dgpg.passphrase="${KEYRING_PASSPHRASE}" -Dgpg.keyname="011C526F29B2CE79"
48
48
else
Original file line number Diff line number Diff line change 23
23
24
24
<properties >
25
25
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
26
- <tycho-version >4.0.4</tycho-version >
27
26
<tycho .p2.baselineMode>warn</tycho .p2.baselineMode>
28
27
<scmConnectionRaw >scm:git:https://github.com/eclipse-m2e/m2e-core.git</scmConnectionRaw >
29
28
</properties >
Original file line number Diff line number Diff line change 2
2
xsi:schemaLocation=" http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd" >
3
3
<!-- This Maven-settings file allows to test Tycho snapshots without the need to install them into the local Maven repository
4
4
and thus makes it possible to test snapshots of Tycho's extension in the CI.
5
- To use it, add the following arguments to the Maven command : -s setup/tychoSnapshotSettings.xml -U -->
5
+ To use it, add the following line of arguments to the '.mvn/maven.config' file : -s setup/tychoSnapshotSettings.xml -U -->
6
6
<profiles >
7
7
<profile >
8
8
<id >tycho-snapshots</id >
You can’t perform that action at this time.
0 commit comments