Skip to content

Commit 25e098e

Browse files
authored
Fix some minor bugs (#209)
* upgrade byteman-helper to v4.0.18-0.11 Signed-off-by: Cwen Yin <[email protected]> * fix some minor bugs Signed-off-by: Cwen Yin <[email protected]> * update git action Signed-off-by: Cwen Yin <[email protected]> Signed-off-by: Cwen Yin <[email protected]>
1 parent f5b6b8a commit 25e098e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release_latest.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,17 @@ jobs:
2424
- name: Prepare build environment
2525
run: |
2626
# 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
2830
yum install -y gcc
2931
yum install -y make
3032
yum install -y binutils
3133
yum install -y git
3234
3335
- uses: actions/checkout@master
3436
with:
35-
# Must use at least depth 2!
36-
fetch-depth: 2
37+
fetch-depth: 0
3738

3839
- name: Setup python3
3940
run: |

.github/workflows/release_tag.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
2828
- uses: actions/checkout@master
2929
with:
30-
# Must use at least depth 2!
31-
fetch-depth: 2
30+
fetch-depth: 0
3231

3332
- name: Setup python3
3433
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GO := $(GOENV) go
1010
CGO := $(CGOENV) go
1111
GOTEST := TEST_USE_EXISTING_CLUSTER=false NO_PROXY="${NO_PROXY},testhost" go test
1212
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
1414

1515
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
1616
ifeq (,$(shell go env GOBIN))

test/integration_test/jvm/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ ! (-e byteman-example) ]]; then
2626
fi
2727

2828
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"
3030
if [[ ! (-e ${byteman_dir}.tar.gz) ]]; then
3131
curl -fsSL -o ${byteman_dir}.tar.gz https://mirrors.chaos-mesh.org/${byteman_dir}.tar.gz
3232
tar zxvf ${byteman_dir}.tar.gz

0 commit comments

Comments
 (0)