Skip to content

Commit a1dd3c4

Browse files
committed
Update base image used for prow tests to use Go 1.18
Fix issues in e2e tests resulting from newer packages for unix libraries being incompatible with Go <1.17. CI before this commit fail with > # golang.org/x/sys/unix > vendor/golang.org/x/sys/unix/syscall.go:83:16: undefined: unsafe.Slice > vendor/golang.org/x/sys/unix/syscall_linux.go:2256:9: undefined: unsafe.Slice > vendor/golang.org/x/sys/unix/syscall_unix.go:118:7: undefined: unsafe.Slice > vendor/golang.org/x/sys/unix/sysvshm_unix.go:33:7: undefined: unsafe.Slice unsafe.Slice was added in Go 1.17. This updates the base image used for Prow CI jobs to Go 1.18, matching the rest of the repo. Signed-off-by: Angel Misevski <[email protected]>
1 parent 579e955 commit a1dd3c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/oci.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
#
1515

16-
FROM registry.ci.openshift.org/openshift/release:golang-1.16
16+
FROM registry.ci.openshift.org/openshift/release:golang-1.18
1717

1818
SHELL ["/bin/bash", "-c"]
1919

0 commit comments

Comments
 (0)