Skip to content

Commit

Permalink
Fix Load Tests in nightly build (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
bane authored Sep 10, 2024
1 parent 53380e2 commit e5c9038
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,18 +216,12 @@ jobs:
uses: actions/checkout@v4.1.1
- name: Install make and jq
run: sudo apt-get -y install make jq
- name: Install Golang
run: |
rm -rf /usr/local/go
sudo wget https://go.dev/dl/go1.21.6.linux-amd64.tar.gz -O /opt/go1.21.6.linux-amd64.tar.gz
sudo chmod 0755 /opt/go1.21.6.linux-amd64.tar.gz
sudo tar -C /usr/local/ -xzf /opt/go1.21.6.linux-amd64.tar.gz
sudo ln -s /usr/local/go/bin/go /usr/local/bin/go
echo GOPATH="/home/ubuntu/go" >> $GITHUB_ENV
echo GOCACHE="/home/ubuntu/.cache/go-build" >> $GITHUB_ENV
echo GOMODCACHE="/home/ubuntu/.cache/go-mod" >> $GITHUB_ENV
- name: Build Blade
run: make build
env:
GOPATH: /home/ubuntu/go
GOCACHE: /home/ubuntu/.cache/go-build
GOMODCACHE: /home/ubuntu/.cache/go-mod
- name: Start Load Test
id: load_test_results
run: |
Expand Down

0 comments on commit e5c9038

Please sign in to comment.