sbom_generation.yaml (61 lines of code) (raw):
# 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/cyclonedx-npm@1.19.3
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/cyclonedx-npm@1.19.3
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/cyclonedx-npm@1.19.3
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/cyclonedx-npm@1.19.3
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/cyclonedx-npm@1.19.3
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/cyclonedx-npm@1.19.3
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