Skip to content
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

Remove build-macos-x64-tar stage. #2384

Closed
wants to merge 24 commits into from
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
911a3a0
# This is a combination of 4 commits.
gaiksaya Jun 27, 2022
e6c8249
# This is a combination of 7 commits.tree 332d5b4df3eb6b64c9aeb1849ff…
prudhvigodithi Jul 22, 2022
4034674
# This is a combination of 11 commits.
prudhvigodithi Jul 22, 2022
8f5d7b4
# This is a combination of 18 commits.
prudhvigodithi Jul 22, 2022
72a1bcf
parent 40346748d1bd57a9858e89a27a283518a565ac24
prudhvigodithi Jul 22, 2022
2d867b5
MacOS
prudhvigodithi Jul 22, 2022
cc42219
MacOS agents: modify label to Jenkins-Agent-MacOS12-X64-Mac1Metal-Mul…
prudhvigodithi Jul 22, 2022
49605f9
MacOS agents: modify label to Jenkins-Agent-MacOS12-X64-Mac1Metal-Mul…
prudhvigodithi Jul 22, 2022
5cde0a6
MacOS agents: modify label to Jenkins-Agent-MacOS12-X64-Mac1Metal-Mul…
prudhvigodithi Jul 22, 2022
bf6ad07
Add mac stage
prudhvigodithi Jul 25, 2022
a836e62
Add mac stage
prudhvigodithi Jul 25, 2022
a205508
Add mac stage
prudhvigodithi Jul 25, 2022
7f14eb3
Add mac stage
prudhvigodithi Jul 25, 2022
54b40cf
Darwin add min snapshot
prudhvigodithi Jul 27, 2022
efc8b0a
Darwin add min snapshot
prudhvigodithi Jul 27, 2022
d91cfec
Darwin add min snapshot
prudhvigodithi Jul 27, 2022
70d13ea
Add mac stage: add sed fix
prudhvigodithi Jul 27, 2022
fc176d5
Add mac stage: add sed fix
prudhvigodithi Jul 27, 2022
eae5730
Fix ci issue #2216
prudhvigodithi Jul 28, 2022
8dc3d57
Add mac stage: change print statement
prudhvigodithi Jul 28, 2022
6c3522a
Add mac stage: remove build-macos-x64-tar
prudhvigodithi Jul 29, 2022
48738ca
Add mac stage: remove build-macos-x64-tar
prudhvigodithi Jul 29, 2022
f009d17
Add mac stage: remove build-macos-x64-tar
prudhvigodithi Jul 29, 2022
7ded768
Merge branch 'mac' of github.com:prudhvigodithi/opensearch-build into…
prudhvigodithi Jul 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 1 addition & 27 deletions jenkins/opensearch/distribution-build.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,32 +170,6 @@ pipeline {
}
}
}
stage('build-macos-x64-tar') {
agent {
node {
label 'Jenkins-Agent-MacOS12-X64-Mac1Metal-Multi-Host'
}
}
tools {
jdk dockerAgent.javaVersion
}
steps {
script {
def buildManifestObj = buildAssembleUpload(
componentName: "${COMPONENT_NAME}",
inputManifest: "manifests/${INPUT_MANIFEST}",
distribution: "tar"
)
}
}
post {
always {
script {
postCleanup()
}
}
}
}
stage('build-and-test-x64-tar') {
agent {
docker {
Expand Down Expand Up @@ -637,4 +611,4 @@ pipeline {
}
}
}
}
}