-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into konflux/mintmaker/main/pytest-cov-6.x
- Loading branch information
Showing
66 changed files
with
87,387 additions
and
3,148 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
|
||
* @konflux-ci/build-maintainers |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Test icm-injection-scripts | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/inject-icm-test.yaml | ||
- icm-injection-scripts/** | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run test for cyclonedx | ||
run: | | ||
TEST_SBOM_FORMAT=cyclonedx ./icm-injection-scripts/scripts/test-inject-icm.sh | ||
- name: Run test for spdx | ||
run: | | ||
TEST_SBOM_FORMAT=spdx ./icm-injection-scripts/scripts/test-inject-icm.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Test sbom utility scripts image | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/test-sbom-utility-scripts-image.yml | ||
- sbom-utility-scripts/** | ||
|
||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/test-sbom-utility-scripts-image.yml | ||
- sbom-utility-scripts/** | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Run tox checks for base-images-sbom-script | ||
run: | | ||
python3 -m pip install tox | ||
cd ./sbom-utility-scripts/scripts/base-images-sbom-script/app/ | ||
tox | ||
- name: Run tox checks for merge-sboms-script | ||
run: | | ||
python3 -m pip install tox | ||
cd ./sbom-utility-scripts/scripts/merge-sboms-script/ | ||
tox | ||
- name: Run tox checks for index-image-sbom-script | ||
run: | | ||
python3 -m pip install tox | ||
cd ./sbom-utility-scripts/scripts/index-image-sbom-script/ | ||
tox | ||
- name: Run tox checks for index-image-sbom-script | ||
run: | | ||
python3 -m pip install tox | ||
cd ./sbom-utility-scripts/scripts/add-image-reference-script/ | ||
tox |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
.venv/ | ||
.coverage | ||
__pycache__/ | ||
.idea/ |
Oops, something went wrong.