Skip to content

Commit 7debdd4

Browse files
committed
gateway-contracts: fix path in docker-compose
1 parent d51436c commit 7debdd4

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/gateway-contracts-deployment-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
- gateway-contracts/docker-compose.yml
3434
- gateway-contracts/Makefile
3535
fhevm-gateway-sc-deploy:
36+
name: Fhevm Gateway Contracts Deployment Tests
3637
needs: check-changes
3738
if: ${{ needs.check-changes.outputs.changes-gw-contracts == 'true' }}
38-
name: fhevm Gateway Contracts Deployment
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout code
@@ -50,13 +50,11 @@ jobs:
5050
password: ${{ secrets.GITHUB_TOKEN }}
5151

5252
- name: Build and start Docker services
53-
working-directory: gateway-contracts
5453
run: |
5554
make docker-compose-build
5655
make docker-compose-up
5756
5857
- name: Check smart contract deployment
59-
working-directory: gateway-contracts
6058
run: |
6159
6260
## Check Contracts Deployment
@@ -92,7 +90,6 @@ jobs:
9290
fi
9391
9492
- name: Clean up
95-
working-directory: gateway-contracts
9693
if: always()
9794
run: |
9895
make docker-compose-down

gateway-contracts/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: fhevm-gateway
1+
name: fhevm-gateway-contracts
22

33
services:
44
anvil-node:
@@ -27,7 +27,7 @@ services:
2727
container_name: deploy-gateway-contracts
2828
build:
2929
context: .
30-
dockerfile: Dockerfile
30+
dockerfile: gateway-contracts/Dockerfile
3131
env_file:
3232
- ./.env
3333
environment:
@@ -44,7 +44,7 @@ services:
4444
container_name: add-host-chains
4545
build:
4646
context: .
47-
dockerfile: Dockerfile
47+
dockerfile: gateway-contracts/Dockerfile
4848
env_file:
4949
- ./.env
5050
environment:
@@ -63,7 +63,7 @@ services:
6363
container_name: deploy-gateway-mock-contracts
6464
build:
6565
context: .
66-
dockerfile: Dockerfile
66+
dockerfile: gateway-contracts/Dockerfile
6767
env_file:
6868
- ./.env
6969
environment:

0 commit comments

Comments
 (0)