Skip to content

Commit

Permalink
ci: add tap2junit as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
UlisesGascon committed Sep 13, 2024
1 parent 26f4f34 commit a976199
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions orka/templates/macos-13-arm-release.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,14 @@ build {
"/opt/homebrew/bin/brew install git automake bash libtool cmake python ccache xz"
]
}
// Install tap2junit using pip.
provisioner "shell" {
inline = [
"echo 'Installing tap2junit using pip...'",
"python3 -m pip install --user tap2junit",
"export PATH=$PATH:/Users/admin/.local/bin"
]
}
// Install Java 17 for Jenkins.
provisioner "shell" {
inline = [
Expand Down
8 changes: 8 additions & 0 deletions orka/templates/macos-13-arm-test.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ build {
"/opt/homebrew/bin/brew install git automake bash libtool cmake python ccache xz"
]
}
// Install tap2junit using pip.
provisioner "shell" {
inline = [
"echo 'Installing tap2junit using pip...'",
"python3 -m pip install --user tap2junit",
"export PATH=$PATH:/Users/admin/.local/bin"
]
}
// Install Java 17 for Jenkins.
provisioner "shell" {
inline = [
Expand Down
8 changes: 8 additions & 0 deletions orka/templates/macos-13-intel-release.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,14 @@ build {
"/usr/local/bin/brew install git automake bash libtool cmake python ccache xz"
]
}
// Install tap2junit using pip.
provisioner "shell" {
inline = [
"echo 'Installing tap2junit using pip...'",
"python3 -m pip install --user tap2junit",
"export PATH=$PATH:/Users/admin/.local/bin"
]
}
// Install Java 17 for Jenkins.
provisioner "shell" {
inline = [
Expand Down
8 changes: 8 additions & 0 deletions orka/templates/macos-13-intel-test.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ build {
"/usr/local/bin/brew install git automake bash libtool cmake python ccache xz"
]
}
// Install tap2junit using pip.
provisioner "shell" {
inline = [
"echo 'Installing tap2junit using pip...'",
"python3 -m pip install --user tap2junit",
"export PATH=$PATH:/Users/admin/.local/bin"
]
}
// Install Java 17 for Jenkins.
provisioner "shell" {
inline = [
Expand Down

0 comments on commit a976199

Please sign in to comment.