Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Oct 18, 2024
1 parent ab5c566 commit a802f02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-ee-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ runs:
# so we have to manually enable it
load: true

- run: docker run -d --name aerospike -p 3000:3000 -e DEFAULT_TTL=30D ${{ env.SECURITY_IMAGE_NAME }}
- run: docker run -d --name aerospike -p 3000:3000 -e DEFAULT_TTL=30d ${{ env.SECURITY_IMAGE_NAME }}
shell: bash

- uses: ./.github/actions/wait-for-as-server-to-start
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-server-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
password: ${{ secrets.DOCKER_HUB_BOT_PW }}

- name: Run server RC
run: docker run -d -p 3000:3000 --name aerospike -e DEFAULT_TTL=30D ${{ vars.SERVER_RC_REPO_LINK }}
run: docker run -d -p 3000:3000 --name aerospike -e DEFAULT_TTL=30d ${{ vars.SERVER_RC_REPO_LINK }}

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
run: pip install -r test/requirements.txt

- name: Run Aerospike server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30D aerospike/aerospike-server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30d aerospike/aerospike-server

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down Expand Up @@ -286,11 +286,11 @@ jobs:

- name: Run Aerospike server release candidate with latest tag
if: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30D aerospike/aerospike-server-rc:latest
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30d aerospike/aerospike-server-rc:latest

- name: Run Aerospike server
if: ${{ !contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30D aerospike/aerospike-server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30d aerospike/aerospike-server

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
run: pip install -r test/requirements.txt

- name: Run lowest supported server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30D aerospike/aerospike-server:${{ vars.LOWEST_SUPPORTED_SERVER_VERSION }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=30d aerospike/aerospike-server:${{ vars.LOWEST_SUPPORTED_SERVER_VERSION }}

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down

0 comments on commit a802f02

Please sign in to comment.