Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Load Tests in nightly build #373

Merged
merged 3 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]
- 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
Loading