Skip to content

Commit 15417d3

Browse files
committed
refactor(hermes): re-organize in monorepo
1 parent 392a3df commit 15417d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+10
-10
lines changed

.github/workflows/ci-hermes.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Check Hermes
22

33
on:
44
pull_request:
5-
paths: [hermes/**]
5+
paths: [apps/hermes/**]
66
push:
77
branches: [main]
8-
paths: [hermes/**]
8+
paths: [apps/hermes/**]
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
@@ -20,4 +20,4 @@ jobs:
2020
- name: Install protoc
2121
uses: arduino/setup-protoc@v3
2222
- name: Run executor tests
23-
run: cargo test --manifest-path ./hermes/Cargo.toml
23+
run: cargo test --manifest-path ./apps/hermes/Cargo.toml

.github/workflows/push-hermes-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
AWS_REGION: us-east-1
3939
- run: |
40-
DOCKER_BUILDKIT=1 docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -f hermes/Dockerfile .
40+
DOCKER_BUILDKIT=1 docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -f apps/hermes/Dockerfile .
4141
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
4242
env:
4343
ECR_REGISTRY: public.ecr.aws

README.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

hermes/Dockerfile renamed to apps/hermes/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN rustup default nightly-2024-03-26
1212

1313
# Build
1414
WORKDIR /src
15-
COPY hermes hermes
15+
COPY apps/hermes hermes
1616
COPY pythnet/pythnet_sdk pythnet/pythnet_sdk
1717

1818

hermes/README.md renamed to apps/hermes/README.md

Lines changed: 2 additions & 2 deletions
File renamed without changes.

0 commit comments

Comments
 (0)