Skip to content

Commit

Permalink
SOL-126461: Pinned Go versions in Jenkinsfile to try and fix test com…
Browse files Browse the repository at this point in the history
…piler error.
  • Loading branch information
TrentDaniel committed Oct 8, 2024
1 parent c85bdc1 commit 3475cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ builder.goapi([
"getTestPermutations": {
List<List<String>> permutations = []
for (platform in [builder.LINUX_ARM, builder.LINUX_X86_64, builder.LINUX_MUSL, builder.DARWIN_X86_64, builder.DARWIN_ARM]) {
for (gover in ['auto-latest', 'auto-previous']) {
for (gover in ['1.23.2', '1.22.7']) {
permutations << [platform, gover]
}
}
Expand Down

1 comment on commit 3475cf7

@clarkbains
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

auto-v1.23.2 and auto-v1.22.7 should be used as the tool names here instead

Please sign in to comment.