Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
J-HowHuang committed May 1, 2024
1 parent b780be2 commit e0b7a99
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmark_group_2_local_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
needs: start-runner # required to start the main job when the runner is ready
runs-on: ${{ needs.start-runner.outputs.server-label }} # run the job on the newly created runner
env:
SERVER_ROOT: ${{ github.workspace }}/server
SERVER_ROOT: ${{ github.workspace }}/istziio/server
AWS_ACCESS_KEY_ID: ${{ secrets.GROUP_2_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.GROUP_2_AWS_SECRET_ACCESS_KEY }}
SERVER_IP: ${{ needs.start-runner.outputs.private-ip }}
Expand All @@ -47,9 +47,11 @@ jobs:
- name: Clone Server
uses: actions/checkout@v4
with:
path: 'istziio'
repository: cmu-db/15721-s24-cache2
ref: benchmark
- name: Build Server
working-directory: ${{ github.workspace }}/istziio
run: |
cargo build --bin istziio_server_node
- name: Clone benchmark
Expand All @@ -60,7 +62,7 @@ jobs:
working-directory: ${{ github.workspace }}/benchmark
run: cargo build
- name: start server nodes
run: ${{ github.workspace }}/server/run.sh
run: ${{ github.workspace }}/istziio/server/run.sh
- name: Wait for server
run: |
until curl --output /dev/null --silent --head --fail $SERVER_URL/; do
Expand Down

0 comments on commit e0b7a99

Please sign in to comment.