-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update macOS automated installer * update docs * update msi release to include version number * remove sboms and apk packages * add unix autoinstaller script * add postrelease install check * allow token to be set during autoinstall * skip CI build + test on documentation updates * add markdown link check * fix broken link
- Loading branch information
Showing
18 changed files
with
833 additions
and
107 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
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -70,3 +70,17 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COSIGN_PWD: ${{ secrets.ORG_COSIGN_PWD }} | ||
|
||
postrelease: | ||
runs-on: ubuntu-20.04 | ||
needs: release | ||
steps: | ||
- name: Untar latest prerelease | ||
uses: robinraju/[email protected] | ||
with: | ||
latest: true | ||
extract: true | ||
preRelease: true | ||
fileName: otelcol-servicenow_*_linux_amd64.tar.gz | ||
- name: Validate otelcol-servicenow | ||
run: ./otelcol-servicenow validate --config config/otelcol-linux-hostmetrics.yaml |
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ name: Tests | |
on: | ||
pull_request: | ||
paths: | ||
- collector/** | ||
- '!docs/**' | ||
- '!readme.md' | ||
|
||
jobs: | ||
unit-tests: | ||
|
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 |
---|---|---|
|
@@ -100,7 +100,6 @@ nfpms: | |
maintainer: ServiceNow Engineering <[email protected]> | ||
description: SerivceNow distribution of the OpenTelemetry Collector. | ||
formats: | ||
- apk | ||
- deb | ||
- rpm | ||
bindir: /opt/sn-collector | ||
|
@@ -138,9 +137,9 @@ signs: | |
artifacts: all | ||
|
||
# https://goreleaser.com/customization/sbom/ | ||
sboms: | ||
- artifacts: archive | ||
cmd: syft | ||
# sboms: | ||
# - artifacts: archive | ||
# cmd: syft | ||
|
||
checksum: | ||
name_template: 'checksums.txt' | ||
|
@@ -149,4 +148,5 @@ release: | |
draft: false | ||
prerelease: "true" | ||
extra_files: | ||
- glob: "./collector/scripts/install/install-unix.sh" | ||
- glob: "./collector/scripts/install/install-macos.sh" |
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
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
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
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
Oops, something went wrong.