Skip to content

Commit

Permalink
ci: add xcode version information
Browse files Browse the repository at this point in the history
  • Loading branch information
UlisesGascon committed Sep 13, 2024
1 parent 8628fe3 commit 26f4f34
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion orka/templates/macos-13-arm-release.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ build {
"echo 'Printing the version of the installed packages...'",
"eval \"$(/opt/homebrew/bin/brew shellenv)\"",
"/opt/homebrew/bin/brew list --versions",
"java -version"
"java -version",
"xcodebuild -version"
]
}
}
4 changes: 3 additions & 1 deletion orka/templates/macos-13-arm-test.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ build {
"echo 'Printing the version of the installed packages...'",
"eval \"$(/opt/homebrew/bin/brew shellenv)\"",
"/opt/homebrew/bin/brew list --versions",
"java -version"
"java -version",
// @TODO: Solve the problem with the Xcode version.
//"xcodebuild -version"
]
}
}
3 changes: 2 additions & 1 deletion orka/templates/macos-13-intel-release.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ build {
"echo 'Printing the version of the installed packages...'",
"eval \"$(/usr/local/bin/brew shellenv)\"",
"/usr/local/bin/brew list --versions",
"java -version"
"java -version",
"xcodebuild -version"
]
}
}
4 changes: 3 additions & 1 deletion orka/templates/macos-13-intel-test.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ build {
"echo 'Printing the version of the installed packages...'",
"eval \"$(/usr/local/bin/brew shellenv)\"",
"/usr/local/bin/brew list --versions",
"java -version"
"java -version",
// @TODO: Solve the problem with the Xcode version.
//"xcodebuild -version"
]
}
}

0 comments on commit 26f4f34

Please sign in to comment.