-
Notifications
You must be signed in to change notification settings - Fork 17
Add omero-zarr-pixel-buffer build #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9efecaa
Add omero-zarr-pixel-buffer build
dominikl ec42d7e
Remove zarr-java build
dominikl e3be714
Add zarr-pb to Trigger
dominikl 0b68e7b
remove target
jburel 3388e1c
Copy version from other plugins to get better overview
jburel 4c0f4d6
Build omero-zarr-pixel-buffer earlier
jburel 44eb41b
Install zarr-pixel-buffer and dependencies
jburel 74d30ff
Add comment
jburel d32dd7a
remove version from previous build
jburel 8063193
Add aws-java-sdk-core jar download to server/config.xml
dominikl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -95,6 +95,16 @@ rm -rf $WORKSPACE/* # Should leave .venv3</command> | |
| <selector class="hudson.plugins.copyartifact.StatusBuildSelector"/> | ||
| <flatten>true</flatten> | ||
| <doNotFingerprintArtifacts>false</doNotFingerprintArtifacts> | ||
| </hudson.plugins.copyartifact.CopyArtifact> | ||
| <hudson.plugins.copyartifact.CopyArtifact plugin="[email protected]_6c69e063442"> | ||
| <project>OMERO-zarr-pixel-buffer-build</project> | ||
| <filter></filter> | ||
| <target></target> | ||
| <includeBuildNumberInTargetPath>false</includeBuildNumberInTargetPath> | ||
| <excludes></excludes> | ||
| <selector class="hudson.plugins.copyartifact.StatusBuildSelector"/> | ||
| <flatten>true</flatten> | ||
| <doNotFingerprintArtifacts>false</doNotFingerprintArtifacts> | ||
| </hudson.plugins.copyartifact.CopyArtifact> | ||
| <hudson.tasks.Shell> | ||
| <command> | ||
|
|
@@ -121,6 +131,18 @@ unzip $ZIP | |
| rm -f $ZIP | ||
| mv $WORKSPACE/$DIST $OMERO_DIST | ||
|
|
||
| # Install omero-zarr-pixel-buffer | ||
| wget -P $OMERO_DIST/lib/server https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.jar | ||
| wget -P $OMERO_DIST/lib/server https://repo.maven.apache.org/maven2/dev/zarr/jzarr/0.4.2/jzarr-0.4.2.jar | ||
| wget -P $OMERO_DIST/lib/server https://repo.maven.apache.org/maven2/org/lasersonlab/s3fs/2.2.3/s3fs-2.2.3.jar | ||
| wget -P $OMERO_DIST/lib/server https://repo.maven.apache.org/maven2/com/amazonaws/aws-java-sdk-s3/1.12.659/aws-java-sdk-s3-1.12.659.jar | ||
| wget -P $OMERO_DIST/lib/server https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.659/aws-java-sdk-core-1.12.659.jar | ||
|
|
||
| # Install the jar from OMERO-zarr-pixel-buffer-build job | ||
| for x in *.jar; do | ||
| mv $x $OMERO_DIST/lib/server | ||
| done | ||
|
|
||
| source $WORKSPACE/.venv3/bin/activate | ||
|
|
||
| pip install -U pip | ||
|
|
@@ -187,4 +209,4 @@ deactivate | |
| <buildWrappers> | ||
| <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="[email protected]"/> | ||
| </buildWrappers> | ||
| </project> | ||
| </project> | ||
This file contains hidden or 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,36 @@ | ||
| <?xml version='1.1' encoding='UTF-8'?> | ||
| <project> | ||
| <actions/> | ||
| <description></description> | ||
| <keepDependencies>false</keepDependencies> | ||
| <properties/> | ||
| <scm class="hudson.scm.NullSCM"/> | ||
| <assignedNode>testintegration</assignedNode> | ||
| <canRoam>false</canRoam> | ||
| <disabled>false</disabled> | ||
| <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | ||
| <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | ||
| <triggers/> | ||
| <concurrentBuild>false</concurrentBuild> | ||
| <builders> | ||
| <hudson.tasks.Shell> | ||
| <command>rm -rf omero-zarr-pixel-buffer | ||
| git clone -b $MERGE_PUSH_BRANCH https://github.com/$SPACE_USER/omero-zarr-pixel-buffer.git | ||
| cd omero-zarr-pixel-buffer | ||
| ./gradlew publishToMavenLocal</command> | ||
| <configuredLocalRules/> | ||
| </hudson.tasks.Shell> | ||
| </builders> | ||
| <publishers> | ||
| <hudson.tasks.ArtifactArchiver> | ||
| <artifacts>**/build/libs/*.jar</artifacts> | ||
| <allowEmptyArchive>false</allowEmptyArchive> | ||
| <onlyIfSuccessful>false</onlyIfSuccessful> | ||
| <fingerprint>false</fingerprint> | ||
| <defaultExcludes>true</defaultExcludes> | ||
| <caseSensitive>true</caseSensitive> | ||
| <followSymlinks>false</followSymlinks> | ||
| </hudson.tasks.ArtifactArchiver> | ||
| </publishers> | ||
| <buildWrappers/> | ||
| </project> |
This file contains hidden or 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,47 @@ | ||
| <?xml version='1.1' encoding='UTF-8'?> | ||
| <flow-definition plugin="[email protected]_58b_86ea_fff1"> | ||
| <actions/> | ||
| <description>Run scc merge and bump versions on omero-zarr-pixel-buffer</description> | ||
| <keepDependencies>false</keepDependencies> | ||
| <properties> | ||
| <hudson.model.ParametersDefinitionProperty> | ||
| <parameterDefinitions> | ||
| <hudson.model.ChoiceParameterDefinition> | ||
| <name>STATUS</name> | ||
| <description>PR check status</description> | ||
| <choices class="java.util.Arrays$ArrayList"> | ||
| <a class="string-array"> | ||
| <string>success-only</string> | ||
| <string>no-error</string> | ||
| <string>none</string> | ||
| </a> | ||
| </choices> | ||
| </hudson.model.ChoiceParameterDefinition> | ||
| <hudson.model.StringParameterDefinition> | ||
| <name>MERGE_OPTIONS</name> | ||
| <description>scc merge options</description> | ||
| <defaultValue>-vvv --no-ask --reset --comment</defaultValue> | ||
| <trim>false</trim> | ||
| </hudson.model.StringParameterDefinition> | ||
| </parameterDefinitions> | ||
| </hudson.model.ParametersDefinitionProperty> | ||
| </properties> | ||
| <definition class="org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition" plugin="[email protected]_4b_a_0b_fa_"> | ||
| <script>node('testintegration') { | ||
|
|
||
| library identifier: 'recursiveMerge@master', retriever: modernSCM( | ||
| [$class: 'GitSCMSource', | ||
| remote: 'https://github.com/ome/jenkins-library-recursivemerge.git']) | ||
|
|
||
| recursiveCheckout( | ||
| repo: 'omero-zarr-pixel-buffer.git') | ||
|
|
||
| recursiveMerge( | ||
| baseRepo: 'omero-zarr-pixel-buffer.git') | ||
|
|
||
| }</script> | ||
| <sandbox>true</sandbox> | ||
| </definition> | ||
| <triggers/> | ||
| <disabled>false</disabled> | ||
| </flow-definition> |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.