Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab-ci
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SECO Northern Europe
Yocto
infrastructure
gitlab-ci
Compare revisions
45c79259d8f0d919700ea4d5311a3f8497b11fae to f6fd7340738a03a77189b8445a1e751a13827d36
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
seco-ne/yocto/infrastructure/gitlab-ci
Select target project
No results found
f6fd7340738a03a77189b8445a1e751a13827d36
Select Git revision
Swap
Target
seco-ne/yocto/infrastructure/gitlab-ci
Select target project
seco-ne/yocto/infrastructure/gitlab-ci
1 result
45c79259d8f0d919700ea4d5311a3f8497b11fae
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
CI: enable 'create-spdx' in pipeline builds
· 67ff371e
Jonas Höppner
authored
5 months ago
This enables the creation of spdx json files.
YT-268
67ff371e
changed approach for triggering spdx
· f6fd7340
Andrii Sosiuk
authored
2 weeks ago
f6fd7340
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build-pipeline.yml
+2
-0
2 additions, 0 deletions
build-pipeline.yml
confluence-page.xml.jinja2
+18
-0
18 additions, 0 deletions
confluence-page.xml.jinja2
with
20 additions
and
0 deletions
build-pipeline.yml
View file @
f6fd7340
...
@@ -152,6 +152,8 @@ workflow:
...
@@ -152,6 +152,8 @@ workflow:
-
export MACHINE="${MACHINE}"
-
export MACHINE="${MACHINE}"
-
export DISTRO="${YOCTO_DISTRO}"
-
export DISTRO="${YOCTO_DISTRO}"
-
export EULA="1"
-
export EULA="1"
-
echo "Enable SPDX License generation"
-
export GENERATE_SPDX_LICENSES="true"
-
source "${SETUP_SCRIPT}" "${BUILD_PATH}"
-
source "${SETUP_SCRIPT}" "${BUILD_PATH}"
.run_build
:
&run_build
.run_build
:
&run_build
...
...
This diff is collapsed.
Click to expand it.
confluence-page.xml.jinja2
View file @
f6fd7340
...
@@ -207,6 +207,24 @@
...
@@ -207,6 +207,24 @@
{#- ------------------------------------------------------------------------------------------ -#}
{#- ------------------------------------------------------------------------------------------ -#}
{%- set files = [] -%}
{%- set files = [] -%}
{%- for file in FILES_machine -%}
{%- for file in FILES_machine -%}
{%- if "spdx" in file.lower() -%}
{%- set _ = used_files.append(file) -%}
{%- set _ = files.append(file) -%}
{%- endif -%}
{%- endfor -%}
{%- if files -%}
<tr>
<th><b>Licensing</b></th>
<td>
{%- for file in files -%}
<a href="{{ file }}">🔽 {{ (file | basename) }}</a>{{ "<br/>" if not loop.last else "" }}
{%- endfor -%}
</td>
</tr>
{%- endif -%}
{#- ------------------------------------------------------------------------------------------ -#}
{%- set files = [] -%}
{%- for file in FILES_machine -%}
{%- if file not in used_files -%}
{%- if file not in used_files -%}
{%- set _ = files.append(file) -%}
{%- set _ = files.append(file) -%}
{%- endif -%}
{%- endif -%}
...
...
This diff is collapsed.
Click to expand it.