Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing integration test path #433

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
de891c2
Fixing integration test path
atshaw43 Nov 13, 2023
17972a6
Updating branch for test
atshaw43 Nov 14, 2023
66b5008
Merge pull request #434 from atshaw43/master
atshaw43 Nov 14, 2023
a322081
Push IntegrationTest artifact
atshaw43 Nov 14, 2023
77ff452
Merge pull request #435 from atshaw43/master
atshaw43 Nov 14, 2023
a781761
Moving back to master
atshaw43 Nov 14, 2023
e15deb9
Merge pull request #436 from atshaw43/master
atshaw43 Nov 14, 2023
8216a91
Changing Working directory
atshaw43 Nov 14, 2023
bc5b8a4
Merge pull request #437 from atshaw43/master
atshaw43 Nov 14, 2023
78663c9
Removing directory
atshaw43 Nov 14, 2023
13f1b17
Merge pull request #438 from atshaw43/master
atshaw43 Nov 14, 2023
46ff3cb
Changing working directory
atshaw43 Nov 14, 2023
25d727e
Merge pull request #439 from atshaw43/master
atshaw43 Nov 14, 2023
3132646
Making sample-app directory
atshaw43 Nov 14, 2023
71b37a0
Merge pull request #440 from atshaw43/master
atshaw43 Nov 14, 2023
7705928
Make parent directories if needed
atshaw43 Nov 14, 2023
c2e504f
Merge pull request #441 from atshaw43/master
atshaw43 Nov 14, 2023
b20ab80
Rverting
atshaw43 Nov 14, 2023
883e8ab
Merge pull request #442 from atshaw43/master
atshaw43 Nov 14, 2023
457e539
Fixing relative path for Integration Test
atshaw43 Nov 14, 2023
776a6d2
Merge branch 'IntegrationTest' into master
atshaw43 Nov 14, 2023
ecc105a
Fixing directory
atshaw43 Nov 14, 2023
8a55eb3
Fixing workign directory
atshaw43 Nov 14, 2023
a853175
Removing extension quotes
atshaw43 Nov 14, 2023
37ea787
Removing workign directory line
atshaw43 Nov 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/IntegrationTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
- name: Copy X-Ray SDK to deployment package with Sample App
run: rsync -r * sample-apps/http-server/aws-xray-sdk-go --exclude sample-apps/

- name: The application.go file must be at the working directory level in EB Go. We need to change the redirection to the folder we copied in the previous step.
run: sed -i 's|replace github.com/aws/aws-xray-sdk-go => ../../|replace github.com/aws/aws-xray-sdk-go => ./aws-xray-sdk-go|g' go.mod
working-directory: ./sample-apps/http-server

- name: Zip up the deployment package
run: zip -r deploy.zip . -x '*.git*'
working-directory: ./sample-apps/http-server


- name: Upload WebApp with X-Ray SDK build artifact
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/http-server/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module application.go

replace github.com/aws/aws-xray-sdk-go => ./aws-xray-sdk-go
replace github.com/aws/aws-xray-sdk-go => ../../

require (
github.com/aws/aws-sdk-go v1.47.9
Expand Down
Loading