Skip to content

Commit

Permalink
Merged branch 'main' into 'github'
Browse files Browse the repository at this point in the history
  • Loading branch information
willsia committed Jun 27, 2022
2 parents a5a10ce + 4da69a2 commit a8f1113
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,5 +211,5 @@ release:
- *default-run-condition
script:
# Create release package
- tar -cvf ../aws-connected-device-framework.tar --exclude=.git --exclude=deploy --exclude=.history --exclude=temp .
- tar -cvf ../aws-connected-device-framework.tar --exclude=.git --exclude=node_modules --exclude=deploy --exclude=.history --exclude=temp .
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ../aws-connected-device-framework.tar "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/aws-connected-device-framework/${CI_JOB_ID}/aws-connected-device-framework.tar"'
5 changes: 3 additions & 2 deletions source/cicd/integrationtestsproject_build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,16 @@ cd source/packages/integration-tests
npm config set @cdf/integration-tests:environment $ENVIRONMENT
npm run clean
npm run build
npm run integration-test -- "features/commandandcontrol/*.feature"
npm run integration-test -- "features/greengrass2-provisioning/*.feature"
npm run integration-test -- "features/device-patcher/*.feature"
npm run integration-test -- "features/provisioning/*.feature"
npm run integration-test -- "features/assetlibrary/$ASSETLIBRARY_MODE/*.feature"
# TODO: fix asset library history tests
#npm run integration-test -- "features/assetlibraryhistory/*.feature"
npm run integration-test -- "features/greengrass2-provisioning/*.feature"
npm run integration-test -- "features/bulkcerts/*.feature"
npm run integration-test -- "features/commands/*.feature"
npm run integration-test -- "features/notifications/*.feature"
npm run integration-test -- "features/commandandcontrol/*.feature"



7 changes: 6 additions & 1 deletion source/docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,15 @@ If an authentication mechanism is applied to the CDF REST API's, a security peri
### Deploying from pre-bundled releases
Each github release comes with a pre-bundled release artifact that can be used to simplify the deployment.

Download the latest release tar files from [here](https://github.com/aws/aws-connected-device-framework/releases)

Run below step in the folder where you downloaded the tar file:

```shell
mkdir aws-connected-device-framework
tar -xvf aws-connected-device-framework.tar -C aws-connected-device-framework
aws-connected-device-framework> cd source
cd aws-connected-device-framework/source
aws-connected-device-framework> rush update
```
**You can now skip to the `Deploying` step**

Expand Down

0 comments on commit a8f1113

Please sign in to comment.