Skip to content

Commit 34eaedf

Browse files
author
wuychloe@amazon.com chloe1818
committed
Increased unit test coverage and updated build from source in README.md
1 parent 14dd15d commit 34eaedf

File tree

1 file changed

+1
-38
lines changed

1 file changed

+1
-38
lines changed

README.md

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The required parameters to deploy are function name, code artifacts directory, h
9999
```
100100
## Build from Source
101101
102-
To automate building your source code, add the step that corresponds to your runtime:
102+
To automate building your source code, add a build step based on your runtime and build process. Below are two commonly used examples for Node.js and Python:
103103
104104
### Node.js
105105
@@ -124,43 +124,6 @@ To automate building your source code, add the step that corresponds to your run
124124
python -m build
125125
```
126126
127-
### Ruby
128-
129-
```yaml
130-
- name: Build source code using Rake
131-
run: |
132-
# Install dependencies
133-
bundle install
134-
135-
# Build
136-
bundle exec rake [task_name]
137-
```
138-
139-
### Java
140-
141-
```yaml
142-
- name: Build source code using Maven
143-
run: |
144-
# Install dependencies
145-
mvn dependency:resolve clean install -DskipTests
146-
147-
# Build
148-
mvn clean package
149-
150-
```
151-
### .NET
152-
153-
```yaml
154-
- name: Build source code
155-
run: |
156-
# Install dependencies
157-
dotnet restore
158-
159-
# Build
160-
dotnet build
161-
162-
```
163-
164127
## Inputs
165128
166129
| Name | Description | Required | Default |

0 commit comments

Comments
 (0)