Skip to content

Commit

Permalink
test: trigger ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmedGIT committed Oct 4, 2023
1 parent df886c6 commit ca0aae6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ OPERANDI_HPC_USERNAME=mmustaf
OPERANDI_HPC_SSH_KEYPATH=/home/mm/.ssh/gwdg-cluster
OPERANDI_HPC_PROJECT_NAME=operandi
OPERANDI_LOGS_DIR=/tmp/operandi_logs
OPERANDI_RABBITMQ_URL=amqp://operandi_user:operandi_password@localhost:5672/
OPERANDI_RABBITMQ_JSON_CONFIG=./src/rabbitmq_definitions.json
OPERANDI_RABBITMQ_USER=operandi_user
OPERANDI_RABBITMQ_PASS=operandi_password
OPERANDI_RABBITMQ_URL=amqp://${OPERANDI_RABBITMQ_USER}:${OPERANDI_RABBITMQ_PASS}@localhost:5672/
OPERANDI_SERVER_BASE_DIR=/tmp/operandi_data
OPERANDI_SERVER_DEFAULT_USERNAME=server_operandi
OPERANDI_SERVER_DEFAULT_PASSWORD=server_operandi
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests/.env
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ OPERANDI_HPC_USERNAME=mmustaf
OPERANDI_HPC_SSH_KEYPATH=/home/runner/.ssh/key_hpc
OPERANDI_HPC_PROJECT_NAME=operandi_tests
OPERANDI_LOGS_DIR=/tmp/operandi_logs_tests
OPERANDI_RABBITMQ_URL=amqp://operandi_user:operandi_password@localhost:5672/test
OPERANDI_RABBITMQ_JSON_CONFIG=./src/rabbitmq_definitions.json
OPERANDI_RABBITMQ_USER=operandi_user
OPERANDI_RABBITMQ_PASS=operandi_password
OPERANDI_RABBITMQ_URL=amqp://${OPERANDI_RABBITMQ_USER}:${OPERANDI_RABBITMQ_PASS}@localhost:5672/
OPERANDI_SERVER_BASE_DIR=/tmp/operandi_data_tests
OPERANDI_SERVER_DEFAULT_USERNAME=operandi_tests_server
OPERANDI_SERVER_DEFAULT_PASSWORD=operandi_tests_server
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
- "/rabbitmq-data/data/:/var/lib/rabbitmq/"
- "/rabbitmq-data/log/:/var/log/rabbitmq/"
- type: bind
source: ./src/rabbitmq_definitions.json
source: ${OPERANDI_RABBITMQ_JSON_CONFIG}
target: /rmq_definitions.json
user: ${USER_ID}:${GROUP_ID}
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose_image_based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
- "/rabbitmq-data/data/:/var/lib/rabbitmq/"
- "/rabbitmq-data/log/:/var/log/rabbitmq/"
- type: bind
source: ./src/rabbitmq_definitions.json
source: ${OPERANDI_RABBITMQ_JSON_CONFIG}
target: /rmq_definitions.json
user: ${USER_ID}:${GROUP_ID}
environment:
Expand Down

0 comments on commit ca0aae6

Please sign in to comment.