Skip to content

Commit

Permalink
Run native server after proxy server
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Jul 11, 2024
1 parent 2c58b70 commit 6a029b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ jobs:
- name: Build Java client
run: mvn install

- name: Run Aerospike server
run: docker run -d --name aerospike -p 3000:3000 aerospike/aerospike-server

- run: docker login aerospike.jfrog.io --username ${{ secrets.JFROG_USERNAME }} --password ${{ secrets.JFROG_DOCKER_TOKEN }}

# TODO: change to use "latest" tag
Expand All @@ -50,6 +47,9 @@ jobs:
- name: Run Aerospike Proxy on latest tag
run: docker run -d --name aerospike-proxy -p 4000:4000 aerospike.jfrog.io/docker/aerospike/aerospike-proxy-private:${{ env.LATEST_TAG }}

- name: Run Aerospike server
run: docker run -d --name aerospike -p 3000:3000 aerospike/aerospike-server

- name: Wait for native and proxy server to start
run: sleep 3

Expand Down

0 comments on commit 6a029b4

Please sign in to comment.