File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
test/integration_test/jvm Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,17 @@ jobs:
24
24
- name : Prepare build environment
25
25
run : |
26
26
# actions/checkout require git v2.X
27
- yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
27
+ if [ "${{ matrix.arch }}" == "amd64" ]; then
28
+ yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
29
+ fi
28
30
yum install -y gcc
29
31
yum install -y make
30
32
yum install -y binutils
31
33
yum install -y git
32
34
33
35
- uses : actions/checkout@master
34
36
with :
35
- # Must use at least depth 2!
36
- fetch-depth : 2
37
+ fetch-depth : 0
37
38
38
39
- name : Setup python3
39
40
run : |
Original file line number Diff line number Diff line change 27
27
28
28
- uses : actions/checkout@master
29
29
with :
30
- # Must use at least depth 2!
31
- fetch-depth : 2
30
+ fetch-depth : 0
32
31
33
32
- name : Setup python3
34
33
run : |
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ GO := $(GOENV) go
10
10
CGO := $(CGOENV ) go
11
11
GOTEST := TEST_USE_EXISTING_CLUSTER=false NO_PROXY="${NO_PROXY},testhost" go test
12
12
SHELL := /usr/bin/env bash
13
- BYTEMAN_DIR := byteman-chaos-mesh-download-v4.0.18-0.11
13
+ BYTEMAN_DIR := byteman-chaos-mesh-download-v4.0.18-0.12
14
14
15
15
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
16
16
ifeq (,$(shell go env GOBIN) )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ if [[ ! (-e byteman-example) ]]; then
26
26
fi
27
27
28
28
echo " download byteman && set environment variable"
29
- byteman_dir=" byteman-chaos-mesh-download-v4.0.18-0.11 "
29
+ byteman_dir=" byteman-chaos-mesh-download-v4.0.18-0.12 "
30
30
if [[ ! (-e ${byteman_dir} .tar.gz) ]]; then
31
31
curl -fsSL -o ${byteman_dir} .tar.gz https://mirrors.chaos-mesh.org/${byteman_dir} .tar.gz
32
32
tar zxvf ${byteman_dir} .tar.gz
You can’t perform that action at this time.
0 commit comments