-
Notifications
You must be signed in to change notification settings - Fork 33
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 #7 from Workiva/cut-test-release
O11Y-1062: Create version 0.0.1
- Loading branch information
Showing
36 changed files
with
44 additions
and
449 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 |
---|---|---|
@@ -1 +1,16 @@ | ||
FROM google/dart:2.13 | ||
WORKDIR /build | ||
|
||
RUN apt update && apt install -y make protobuf-compiler | ||
|
||
COPY pubspec.yaml . | ||
RUN pub get | ||
|
||
COPY . . | ||
|
||
RUN make init analyze test | ||
RUN ./package.sh | ||
|
||
ARG BUILD_ARTIFACTS_PUB=/build/pub_package.pub.tgz | ||
|
||
FROM scratch |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include: package:workiva_analysis_options/v1.recommended.yaml | ||
analyzer: | ||
exclude: | ||
- src/sdk/trace/exporters/opentelemetry | ||
- lib/src/sdk/trace/exporters/opentelemetry |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
mkdir pub_temp | ||
|
||
# Make a copy of the directories we want to publish, with symlinks expanded | ||
[ -d lib ] && cp -R -L lib pub_temp/lib | ||
|
||
# Make a copy of the files we want to publish | ||
[ -f CHANGELOG.md ] && cp CHANGELOG.md pub_temp/ | ||
[ -f LICENSE ] && cp LICENSE pub_temp/ | ||
[ -f README.md ] && cp README.md pub_temp/ | ||
[ -f analysis_options.yaml ] && cp analysis_options.yaml pub_temp/ | ||
[ -f pubspec.yaml ] && cp pubspec.yaml pub_temp/ | ||
|
||
# Generate the final publishable artifact | ||
cd pub_temp | ||
tar czf ../pub_package.pub.tgz $(ls -d CHANGELOG.md LICENSE README.md analysis_options.yaml build.yaml pubspec.yaml lib/ 2>/dev/null) | ||
cd ../ | ||
|
||
# Clean up | ||
rm -rf pub_temp |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
packages/opentelemetry_api/lib/src/trace/span_context.dart
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
packages/opentelemetry_api/lib/src/trace/tracer_provider.dart
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.