Skip to content

Commit

Permalink
PTFE-1151 remove datadog visibility tracer
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet committed Nov 15, 2023
1 parent 9acdec3 commit d8bfa91
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 319 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/sbom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---

Check failure on line 1 in .github/workflows/sbom.yaml

View workflow job for this annotation

GitHub Actions / Trunk Check

prettier

Incorrect formatting, autoformat by running 'trunk fmt'

name: sbom

on:
workflow_dispatch: {}
push:
branches: ["main"]

Check failure on line 8 in .github/workflows/sbom.yaml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(quoted-strings)

[new] string value is redundantly quoted with any quotes
pull_request:
branches: ["main"]

Check failure on line 10 in .github/workflows/sbom.yaml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(quoted-strings)

[new] string value is redundantly quoted with any quotes

jobs:
SBOM-upload:

runs-on: ubuntu-latest
permissions:
id-token: write
contents: write

steps:
- uses: actions/checkout@v4
- name: Generate SBOM
# generation command documentation: https://github.com/microsoft/sbom-tool#sbom-generation
run: |
curl -Lo $RUNNER_TEMP/sbom-tool https://github.com/microsoft/sbom-tool/releases/latest/download/sbom-tool-linux-x64
chmod +x $RUNNER_TEMP/sbom-tool
$RUNNER_TEMP/sbom-tool generate -b . -bc . -pn $ -pv 1.0.0 -ps scality -nsb https://sbom.scality.com -V Verbose
- uses: actions/upload-artifact@v3
with:
name: sbom
path: _manifest/spdx_2.2
- name: SBOM upload
uses: advanced-security/[email protected]
with:
filePath: "_manifest/spdx_2.2/"

Check failure on line 35 in .github/workflows/sbom.yaml

View workflow job for this annotation

GitHub Actions / Trunk Check

yamllint(quoted-strings)

[new] string value is redundantly quoted with any quotes
7 changes: 0 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ on:
permissions:
contents: read

env:
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
DD_SERVICE: "${{ github.repository }}"
DD_CIVISIBILITY_AGENTLESS_ENABLED: true
DD_CIVISIBILITY_ITR_ENABLED: true
DD_ENV: ci

jobs:
test:
name: ${{ matrix.test.name }}
Expand Down
Loading

0 comments on commit d8bfa91

Please sign in to comment.