mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00

* s390x enablement Signed-off-by: cfilleke <cfilleke@redhat.com> * should resolve remaining merge conflicts Signed-off-by: cfilleke <cfilleke@redhat.com> * correct prev commit to resolve merge conflicts Signed-off-by: cfilleke <cfilleke@redhat.com> * to resolve generate-verify issue Signed-off-by: cfilleke <cfilleke@redhat.com> * provide registry container for s390x, vddk datasource stub fix and util data type fix Signed-off-by: cfilleke <cfilleke@redhat.com> * get the linter to fix things Signed-off-by: cfilleke <cfilleke@redhat.com> * fix linter issue Signed-off-by: cfilleke <cfilleke@redhat.com> --------- Signed-off-by: cfilleke <cfilleke@redhat.com> Signed-off-by: cfillekes <cfilleke@redhat.com>
31 lines
2.3 KiB
Plaintext
31 lines
2.3 KiB
Plaintext
# The ci.bazelrc is an untracked file that can be generated by hack/dockerized or automated/test.sh scripts as part of CI
|
|
try-import ci.bazelrc
|
|
try-import user.bazelrc
|
|
|
|
# Set common values for all builds (run, test and coverage inherit from build)
|
|
build --stamp --workspace_status_command=./hack/build/print-workspace-status.sh --host_force_python=PY3
|
|
|
|
# Bazel has a rule of precedence so we can specify / overwrite architecture specific commands if needed
|
|
build:x86_64 --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64_cgo
|
|
run:x86_64 --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64_cgo
|
|
test:x86_64 --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64_cgo
|
|
|
|
build:aarch64 --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo --incompatible_use_cc_configure_from_rules_cc
|
|
run:aarch64 --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo --incompatible_use_cc_configure_from_rules_cc
|
|
test:aarch64 --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo --host_javabase=@local_jdk//:jdk
|
|
|
|
build:crossbuild-aarch64 --incompatible_enable_cc_toolchain_resolution --platforms=//bazel/platforms:aarch64-none-linux-gnu --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo
|
|
run:crossbuild-aarch64 --incompatible_enable_cc_toolchain_resolution --platforms=//bazel/platforms:aarch64-none-linux-gnu --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo
|
|
test:crossbuild-aarch64 --platforms=@io_bazel_rules_go//go/toolchain:linux_arm64_cgo --host_javabase=@local_jdk//:jdk
|
|
|
|
build:s390x --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo --incompatible_use_cc_configure_from_rules_cc
|
|
run:s390x --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo --incompatible_use_cc_configure_from_rules_cc
|
|
test:s390x --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo --host_javabase=@local_jdk//:jdk
|
|
|
|
|
|
build:crossbuild-s390x --incompatible_enable_cc_toolchain_resolution --platforms=//bazel/platforms:s390x-none-linux-gnu --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo
|
|
run:crossbuild-s390x --incompatible_enable_cc_toolchain_resolution --platforms=//bazel/platforms:s390x-none-linux-gnu --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo
|
|
test:crossbuild-s390x --platforms=@io_bazel_rules_go//go/toolchain:linux_s390x_cgo --host_javabase=@local_jdk//:jdk
|
|
|
|
build --define gotags=selinux
|