buildkite: run intergration tests with the network plugin

This commit is contained in:
Andrei Vagin
2024-09-25 21:35:17 -07:00
parent 975bf85ffd
commit ec18cb188f
4 changed files with 24 additions and 8 deletions
+8
View File
@@ -368,6 +368,14 @@ steps:
<<: *platform_specific_agents
<<: *ubuntu_agents
arch: "amd64"
- <<: *common
<<: *docker
<<: *source_test
label: ":satellite: gVisor network plugin tests"
command: make plugin-network-tests
agents:
<<: *kvm_agents
arch: "amd64"
- <<: *common
<<: *source_test
label: ":coffee: Do tests"
+8 -1
View File
@@ -111,6 +111,7 @@ else
RUNTIME ?= $(BRANCH_NAME)
endif
RUNTIME_DIR ?= $(shell dirname $(shell mktemp -u))/$(RUNTIME)
RUNSC_TARGET ?= //runsc
RUNTIME_BIN ?= $(RUNTIME_DIR)/runsc
RUNTIME_LOG_DIR ?= $(RUNTIME_DIR)/logs
RUNTIME_LOGS ?= $(RUNTIME_LOG_DIR)/runsc.log.%TEST%.%TIMESTAMP%.%COMMAND%
@@ -127,7 +128,7 @@ endif
$(RUNTIME_BIN): # See below.
@mkdir -p "$(RUNTIME_DIR)"
ifeq (,$(STAGED_BINARIES))
@$(call copy,//runsc,$(RUNTIME_BIN))
@$(call copy,$(RUNSC_TARGET),$(RUNTIME_BIN))
else
gsutil cat "${STAGED_BINARIES}" | \
tar -C "$(RUNTIME_DIR)" -zxvf - runsc && \
@@ -346,6 +347,12 @@ docker-tests: load-basic $(RUNTIME_BIN)
@$(call test_runtime,$(RUNTIME),$(INTEGRATION_TARGETS) //test/e2e:integration_runtime_test)
.PHONY: docker-tests
plugin-network-tests: load-basic $(RUNTIME_BIN)
@$(call install_runtime,$(RUNTIME),--network=plugin)
@$(call test_runtime,$(RUNTIME), --test_arg=-test.run=ConnectToSelf $(INTEGRATION_TARGETS))
plugin-network-tests: RUNSC_TARGET=--config plugin-tldk //runsc:runsc-plugin-stack
overlay-tests: load-basic $(RUNTIME_BIN)
@$(call install_runtime,$(RUNTIME),--overlay2=all:dir=/tmp)
@$(call install_runtime,$(RUNTIME)-docker,--net-raw --overlay2=all:dir=/tmp)
+6 -5
View File
@@ -851,11 +851,12 @@ func (s *Sandbox) createSandboxProcess(conf *config.Config, args *Args, startSyn
if !conf.TestOnlyAllowRunAsCurrentUserWithoutChroot {
// Setting cmd.Env = nil causes cmd to inherit the current process's env.
cmd.Env = []string{}
// runsc-race with glibc needs to disable rseq.
glibcTunables := os.Getenv("GLIBC_TUNABLES")
if glibcTunables != "" {
cmd.Env = append(cmd.Env, fmt.Sprintf("GLIBC_TUNABLES=%s", glibcTunables))
}
}
if config.CgoEnabled {
// Platforms that use stub processes are not compatible with
// the glibc rseq, because they unmap everything from a process
// address space.
cmd.Env = append(cmd.Env, "GLIBC_TUNABLES=glibc.pthread.rseq=0")
}
// If there is a gofer, sends all socket ends to the sandbox.
+2 -2
View File
@@ -172,7 +172,7 @@ func TestSandboxProcessEnv(t *testing.T) {
if err != nil {
t.Fatal(err)
}
if len(got) != 0 {
t.Errorf("sandbox process's environment is not empty: got %s", string(got))
if len(got) != 0 && string(got) != "GLIBC_TUNABLES=glibc.pthread.rseq=0\x00" {
t.Errorf("sandbox process's environment is not empty: got %s (%v)", string(got), got)
}
}