-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from seifrajhi/AWS-Containers-Retail-Sample-v2
fix AWS Containers Retail Sample
- Loading branch information
Showing
11 changed files
with
48 additions
and
48 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
...l-store-sample-app/.github/dependabot.yml → .github/dependabot.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,13 +33,13 @@ jobs: | |
|
||
- name: Build Images | ||
run: | | ||
scripts/build-image.sh -t e2e | ||
retail-store-sample-app/scripts/build-image.sh -t e2e | ||
- name: Run Tests | ||
run: | | ||
(cd deploy/docker-compose && TAG=e2e MYSQL_PASSWORD='test123' docker-compose up -d) | ||
(bash scripts/e2e-compose.sh) | ||
(cd deploy/docker-compose && docker-compose down) | ||
(cd retail-store-sample-app/deploy/docker-compose && TAG=e2e MYSQL_PASSWORD='test123' docker-compose up -d) | ||
(bash retail-store-sample-app/scripts/e2e-compose.sh) | ||
(cd retail-store-sample-app/deploy/docker-compose && docker-compose down) | ||
kubernetes: | ||
name: Kubernetes E2E Tests | ||
|
@@ -61,7 +61,7 @@ jobs: | |
|
||
- name: Build Images | ||
run: | | ||
scripts/build-image.sh -r 'public.ecr.aws/aws-containers' -t e2e | ||
retail-store-sample-app/scripts/build-image.sh -r 'public.ecr.aws/aws-containers' -t e2e | ||
- name: Setup helmfile | ||
uses: mamezou-tech/[email protected] | ||
|
@@ -83,7 +83,7 @@ jobs: | |
kind load docker-image public.ecr.aws/aws-containers/retail-store-sample-orders:$IMAGE_TAG | ||
kind load docker-image public.ecr.aws/aws-containers/retail-store-sample-ui:$IMAGE_TAG | ||
(cd deploy/kubernetes/charts && helmfile apply --wait) | ||
(cd retail-store-sample-app/deploy/kubernetes/charts && helmfile apply --wait) | ||
sleep 60 | ||
|
@@ -106,4 +106,4 @@ jobs: | |
- name: Test | ||
run: | | ||
bash scripts/e2e-kind.sh | ||
bash retail-store-sample-app/scripts/e2e-kind.sh |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,11 @@ jobs: | |
go install github.com/google/[email protected] | ||
(cd oss/attribution && pip3 install -r requirements.txt) | ||
(cd retail-store-sample-app/oss/attribution && pip3 install -r requirements.txt) | ||
- name: Run | ||
run: | | ||
bash oss/run.sh | ||
bash retail-store-sample-app/oss/run.sh | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters