File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 35
35
hostname : " ${BUILDKITE_AGENT_META_DATA_HOSTNAME}"
36
36
env :
37
37
NUMBER_OF_VMS : " 100"
38
+ artifact_paths :
39
+ - " runtime/logs/*"
38
40
command :
39
41
- ./.buildkite/al2_test.sh
40
42
timeout_in_minutes : 10
Original file line number Diff line number Diff line change @@ -10,8 +10,13 @@ export CONTAINERD_SOCKET=$dir/containerd.sock
10
10
11
11
export SHIM_BASE_DIR=$dir
12
12
13
- sudo -E PATH=$PATH $bin_path /firecracker-containerd --config $dir /config.toml &
13
+ mkdir -p runtime/logs
14
+
15
+ sudo -E PATH=$PATH \
16
+ $bin_path /firecracker-containerd \
17
+ --config $dir /config.toml & >> runtime/logs/containerd.out &
14
18
containerd_pid=$!
19
+
15
20
sudo $bin_path /firecracker-ctr --address $dir /containerd.sock content fetch docker.io/library/alpine:3.10.1
16
21
sudo -E PATH=$bin_path :$PATH /usr/local/bin/go test -count=1 -run TestMultipleVMs_Isolated ./... -v
17
22
You can’t perform that action at this time.
0 commit comments