-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ed0917
commit c10235e
Showing
11 changed files
with
155 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
AusweisApp2 1.22.7 | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
**Releasedatum:** 20. Mai 2022 | ||
|
||
|
||
Anwender | ||
"""""""" | ||
- Ein Absturz bei den neuen Systembenachrichtigungen ab | ||
macOS 10.14 wurde behoben. | ||
|
||
|
||
Entwickler | ||
"""""""""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Release Notes | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
1.22.7 | ||
1.22.6 | ||
1.22.5 | ||
1.22.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ Versionszweig 1.22 | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
1.22.7 | ||
1.22.6 | ||
1.22.5 | ||
1.22.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import common.RootTrigger | ||
|
||
def j = new RootTrigger | ||
( | ||
jobName: '_Review_Trigger_Configuration_', | ||
triggerJob: '${REVIEW_BRANCH}__Review_Trigger_Configuration' | ||
).generate(this) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import common.Review | ||
import common.Build.JobType | ||
import static common.Constants.strip | ||
|
||
def j = new Review | ||
( | ||
name: 'Configuration', | ||
libraries: ['Linux'], | ||
label: 'Linux', | ||
artifacts: 'tmp/*.log', | ||
allowEmptyArtifacts: true, | ||
xunit: true | ||
).generate(this) | ||
|
||
|
||
j.with | ||
{ | ||
wrappers | ||
{ | ||
environmentVariables | ||
{ | ||
env("QT_PLUGIN_PATH", '$WORKSPACE/libs/build/dist/plugins') | ||
} | ||
} | ||
|
||
steps | ||
{ | ||
shell('cd source; cmake -DCMD=IMPORT_PATCH -P cmake/cmd.cmake') | ||
|
||
shell(strip('''\ | ||
cd build; | ||
cmake -Werror=dev ../source | ||
-DCMAKE_PREFIX_PATH=${WORKSPACE}/libs/build/dist | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
-DBUILD_SHARED_LIBS=on | ||
''')) | ||
|
||
shell('''\ | ||
cd build; make ${MAKE_FLAGS} ALL_Test_configuration | ||
'''.stripIndent().trim()) | ||
|
||
shell('''\ | ||
cd build; ctest --output-on-failure ${MAKE_FLAGS} -R Test_configuration | ||
'''.stripIndent().trim()) | ||
|
||
shell('''\ | ||
cd build; ctest --output-on-failure ${MAKE_FLAGS} -L json | ||
'''.stripIndent().trim()) | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
resources/jenkins/dsl/Reviews/Review_Trigger_Configuration.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import common.Trigger | ||
import common.Constants | ||
import common.Build.JobType | ||
import static common.Constants.createEnvMap | ||
import static common.Constants.createReviewMessage | ||
import static common.Constants.getEnvNumber | ||
|
||
def getJobs() | ||
{ | ||
return ['Formatting', 'Configuration'] | ||
} | ||
|
||
String getName(String name) | ||
{ | ||
return "${MERCURIAL_REVISION_BRANCH}_Review_" + name | ||
} | ||
|
||
def envMap = createEnvMap(getJobs(), this.&getName) | ||
def reviewMessage = createReviewMessage(getJobs(), this.&getName) | ||
|
||
|
||
def j = new Trigger | ||
( | ||
name: '_Review_Trigger_Configuration', | ||
jobType: JobType.Multi | ||
).generate(this) | ||
|
||
|
||
j.with | ||
{ | ||
concurrentBuild() | ||
|
||
wrappers | ||
{ | ||
environmentVariables | ||
{ | ||
envs(envMap) | ||
} | ||
} | ||
|
||
steps | ||
{ | ||
shell('cd source; hg import --no-commit ../patch.diff') | ||
|
||
phase('General', 'UNSTABLE') | ||
{ | ||
phaseJob(getName('Formatting')) | ||
} | ||
|
||
phase('Unit Tests', 'UNSTABLE') | ||
{ | ||
phaseJob(getName('Configuration')) | ||
} | ||
} | ||
|
||
configure | ||
{ | ||
project -> project / 'publishers' << 'org.jenkinsci.plugins.jenkinsreviewbot.ReviewboardNotifier' { | ||
shipItOnSuccess 'false' | ||
useMarkdown 'true' | ||
customMessage "${reviewMessage}" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters