-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release/2.6' into juszhan/google…
…/2.6 Required-githooks: true Change-Id: I806b547df778ae427c3646b952769bc291359f02
- Loading branch information
Showing
94 changed files
with
2,631 additions
and
731 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ on: | |
- ci/** | ||
- requirements-build.txt | ||
- requirements-utest.txt | ||
- utils/build.config | ||
|
||
permissions: {} | ||
|
||
|
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
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,70 @@ | ||
name: Trivy scan | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: ["master", "release/**"] | ||
pull_request: | ||
branches: ["master", "release/**"] | ||
|
||
# Declare default permissions as nothing. | ||
permissions: {} | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Run Trivy vulnerability scanner in repo mode | ||
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # 0.24.0 | ||
with: | ||
scan-type: 'fs' | ||
scan-ref: '.' | ||
trivy-config: 'utils/trivy/trivy.yaml' | ||
|
||
- name: Prepare the report to be uploaded to the GitHub artifact store | ||
run: | | ||
mkdir report | ||
cp trivy-report-daos.txt report | ||
cp utils/trivy/.trivyignore report/trivyignore.txt | ||
- name: Upload the report to the GitHub artifact store | ||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | ||
with: | ||
path: report/* | ||
name: trivy-report-daos | ||
|
||
- name: Adjust config file to use sarif format | ||
run: | | ||
sed -i 's/output: "trivy-report-daos.txt"/output: "trivy-results.sarif"/g' \ | ||
utils/trivy/trivy.yaml | ||
sed -i 's/format: template/format: sarif/g' utils/trivy/trivy.yaml | ||
- name: Run Trivy vulnerability scanner in repo mode | ||
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # 0.24.0 | ||
with: | ||
scan-type: 'fs' | ||
scan-ref: '.' | ||
trivy-config: 'utils/trivy/trivy.yaml' | ||
|
||
- name: Upload Trivy scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a | ||
# 3.25.15 (v3) | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
|
||
- name: Adjust config file to show and validate scan results | ||
run: | | ||
sed -i 's/output: "trivy-results.sarif"//g' utils/trivy/trivy.yaml | ||
sed -i 's/format: sarif/format: table/g' utils/trivy/trivy.yaml | ||
sed -i 's/exit-code: 0/exit-code: 1/g' utils/trivy/trivy.yaml | ||
- name: Run Trivy vulnerability scanner in repo mode | ||
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # 0.24.0 | ||
with: | ||
scan-type: 'fs' | ||
scan-ref: '.' | ||
trivy-config: 'utils/trivy/trivy.yaml' |
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
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 |
---|---|---|
@@ -1,3 +1,19 @@ | ||
daos (2.6.1-4) unstable; urgency=medium | ||
[ Tomasz Gromadzki ] | ||
* Add support of the PMDK package 2.1.0 with NDCTL enabled. | ||
* Increase the default ULT stack size to 20KiB if the engine uses | ||
the DCPM storage class. | ||
* Prevent using the RAM storage class (simulated PMem) when | ||
the shutdown state (SDS) is active. | ||
* Automatically disable SDS for the RAM storage class on engine startup. | ||
* Force explicitly setting the PMEMOBJ_CONF='sds.at_create=0' | ||
environment variable to deactivate SDS for the DAOS tools | ||
(ddb, daos_perf, vos_perf, etc.) when used WITHOUT DCPM. | ||
Otherwise, a user is supposed to be stopped by an error | ||
like: "Unsafe shutdown count is not supported for this source". | ||
|
||
-- Tomasz Gromadzki <[email protected]> Wed, 02 Oct 2024 12:00:00 +0200 | ||
|
||
daos (2.6.1-3) unstable; urgency=medium | ||
[ Phillip Henderson ] | ||
* Third release candidate for 2.6.1 | ||
|
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
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
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
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
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
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
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
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
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
Oops, something went wrong.