-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsbom_generation.yaml
76 lines (66 loc) · 3.26 KB
/
sbom_generation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright (c) 2023-2025, Oracle and/or its affiliates. All rights reserved.
# This OCI DevOps build specification file [1] generates a Software Bill of Materials (SBOM) of the repository.
# The file is needed to run checks for third-party vulnerabilities and business approval according to Oracle’s GitHub policies.
# [1] https://docs.oracle.com/en-us/iaas/Content/devops/using/build_specs.htm
version: 0.1
component: build
timeoutInSeconds: 1000
shell: bash
steps:
- type: Command
name: "Download CycloneDx-cli executable and install dependencies"
command: |
wget https://github.com/CycloneDX/cyclonedx-cli/releases/download/v0.24.2/cyclonedx-linux-x64
yum install -y libicu
- type: Command
name: "Generate SBOM for unified_debug"
command: |
pushd unified_debug
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Generate SBOM for jones-test"
command: |
pushd jones-test
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Generate SBOM for jones-promises"
command: |
pushd jones-promises
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Generate SBOM for jones-ndb"
command: |
pushd jones-ndb
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Generate SBOM for jones-mysql"
command: |
pushd jones-mysql
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Generate SBOM for database-jones"
command: |
pushd database-jones
npm install && npm install --save-dev @cyclonedx/[email protected]
npx @cyclonedx/cyclonedx-npm --omit dev --output-format JSON --output-file artifactSBOM.json --spec-version 1.4 --flatten-components
popd
- type: Command
name: "Merge multiple SBOMs using CycloneDX-cli"
command: |
# For more details, visit https://github.com/CycloneDX/cyclonedx-cli/blob/main/README.md
chmod +x cyclonedx-linux-x64
./cyclonedx-linux-x64 merge --input-files database-jones/artifactSBOM.json jones-mysql/artifactSBOM.json jones-ndb/artifactSBOM.json jones-promises/artifactSBOM.json jones-test/artifactSBOM.json unified_debug/artifactSBOM.json --output-file artifactSBOM.json --output-version v1_4
outputArtifacts:
- name: artifactSBOM
type: BINARY
location: ${OCI_PRIMARY_SOURCE_DIR}/artifactSBOM.json