forked from open-telemetry/opentelemetry-lambda
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a49d79e
commit f67c17a
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -37,19 +37,19 @@ jobs: | |
run: npx [email protected] run version:update # Newer versions have trouble with our lerna.json which contains `useWorkspaces` | ||
- name: Build opentelemetry-instrumentation-aws-lambda | ||
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-aws-lambda | ||
run: npm install --ignore-scripts && npm pack --ignore-scripts | ||
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts | ||
- name: Build opentelemetry-instrumentation-mongodb | ||
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-mongodb | ||
run: npm install --ignore-scripts && npm pack --ignore-scripts | ||
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts | ||
- name: Build opentelemetry-instrumentation-aws-sdk | ||
working-directory: ${{ env.OPENTELEMETRY_JS_CONTRIB_PATH }}/plugins/node/opentelemetry-instrumentation-aws-sdk | ||
run: npm install --ignore-scripts && npm pack --ignore-scripts | ||
run: npm install --ignore-scripts && npm run compile && npm pack --ignore-scripts | ||
- name: Prepare opentelemetry-instrumentation | ||
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }} | ||
run: npm install | ||
- name: Build opentelemetry-instrumentation | ||
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }}/experimental/packages/opentelemetry-instrumentation | ||
run: npm install && npm pack | ||
run: npm install && npm run compile && npm pack | ||
- name: Build opentelemetry-sdk-trace-base | ||
working-directory: ${{ env.OPENTELEMETRY_JS_PATH }}/packages/opentelemetry-sdk-trace-base | ||
run: npm install && npm run compile && npm pack | ||
|